1 4 package com.tc.async.api; 5 6 public interface StageMonitor { 7 8 public void eventBegin(int queueDepth); 9 10 public void flush(); 11 12 public Analysis analyze(); 13 14 public interface Analysis { 15 16 public Number getEventCount(); 17 18 public Number getElapsedTime(); 19 20 public Number getEventsPerSecond(); 21 22 public Number getMinQueueDepth(); 23 24 public Number getMaxQueueDepth(); 25 26 public Number getAvgQueueDepth(); 27 28 } 29 } 30 | Popular Tags |