Package com.sefer.dragonfly.client.tools

Examples of com.sefer.dragonfly.client.tools.MonitorLog


      e.printStackTrace();
    }

    new Thread() {
      public void run() {
        MonitorLog monitorLog = MonitorLogFactory
            .getLogger("irisPluginCache");
        while (true) {
          try {
            Thread.sleep(100);
          } catch (InterruptedException e) {
            e.printStackTrace();
          }
          System.out.println("input data.....................");
          monitorLog.log(new String(""));
        }

      }
    }.start();
  }
View Full Code Here

TOP

Related Classes of com.sefer.dragonfly.client.tools.MonitorLog

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.