Package org.apache.mina.core.service

Examples of org.apache.mina.core.service.IoServiceStatistics


          cName = cName.substring(cName.lastIndexOf('.')).replaceFirst("[\\.]", "");
        }
        //enable only if user wants it
        if (enableMinaMonitor) {
          //add a stats to allow for more introspection into the workings of mina
          stats = new IoServiceStatistics((AbstractIoService) acceptor);
          //poll every second
          stats.setThroughputCalculationInterval(minaPollInterval);
          MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
          try {
            serviceManagerObjectName = new ObjectName("org.red5.server:type=RTMPMinaTransport");
View Full Code Here

TOP

Related Classes of org.apache.mina.core.service.IoServiceStatistics

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.