Package com.bluesoft.util.metrics.core

Examples of com.bluesoft.util.metrics.core.MeteringMetric.addEvent()


      }
    } );

    MeteringMetric baseMeteringMetric = new BasicMeteringMetric( "testMeteringMetric" );
    MeteringMetric asyncMeteringMetric = testManager.createQueuedMeteringMetric( baseMeteringMetric );
    asyncMeteringMetric.addEvent( new BasicMetricEvent() );
    assertEquals( baseMeteringMetric.getCount(), BigInteger.ONE );
    assertEquals( asyncMeteringMetric.getCount(), BigInteger.ONE );
    assertEquals( eventCount, 1 );
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.