Package railo.runtime.monitor

Examples of railo.runtime.monitor.IntervallMonitor


            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));
          }
          else {
            RequestMonitor m = obj instanceof RequestMonitor ? (RequestMonitor) obj : new RequestMonitorWrap(obj);
            m.init(configServer, name, log);
            SystemOut.printDate(config.getOutWriter(), "initialize "+(strType)+" monitor ["+clazz.getName()+"]");
           
            requests.add(m);
          }
        }
View Full Code Here

TOP

Related Classes of railo.runtime.monitor.IntervallMonitor

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.