Package osgi.logger.provider.LoggerDispatcher

Examples of osgi.logger.provider.LoggerDispatcher.Eval


  public List<Info> list(String glob) throws Exception {
    final List<Info> infos = new ArrayList<>();
    final Pattern p = glob == null ? null : Glob.toPattern(glob);
    ;

    LoggerDispatcher.dispatcher.evaluate(new Eval() {

      @Override
      public void eval(AbstractLogger msf) {
        if (p == null || p.matcher(msf.name).find()) {
          Info info = new Info();
View Full Code Here

TOP

Related Classes of osgi.logger.provider.LoggerDispatcher.Eval

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.