Package com.nokia.dempsy.monitoring.StatsCollector

Examples of com.nokia.dempsy.monitoring.StatsCollector.TimerContext


   }
  
   @Test
   public void testOutputCycleTiming() throws Throwable
   {
      TimerContext ctx = stats.outputInvokeStarted();
      Thread.sleep(100);
      ctx.stop();
      long val = getStatValue(stats, StatsCollectorCoda.GAGE_LAST_OUTPUT_MILLIS);
      assertTrue(val >= 100);
   }
View Full Code Here

TOP

Related Classes of com.nokia.dempsy.monitoring.StatsCollector.TimerContext

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.