Package railo.runtime.monitor

Examples of railo.runtime.monitor.IntervallMonitorWrap


            obj = constr.invoke();
          else
            obj = clazz.newInstance();
          SystemOut.printDate(config.getOutWriter(), "loaded "+(strType)+" monitor ["+clazz.getName()+"]");
          if (type == IntervallMonitor.TYPE_INTERVALL) {
            IntervallMonitor m = obj instanceof IntervallMonitor ? (IntervallMonitor) obj : new IntervallMonitorWrap(obj);
            m.init(configServer, name, log);
            intervalls.add(m);
          }
          else if (type == 4) {// FUTURE Monitor.TYPE_ACTION;
            actions.add(new MonitorTemp(obj, name, log));
View Full Code Here

TOP

Related Classes of railo.runtime.monitor.IntervallMonitorWrap

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.