Uses of Class
com.yammer.metrics.core.Timer

Packages that use Timer
com.yammer.metrics   
com.yammer.metrics.core   
com.yammer.metrics.reporting   
 

Uses of Timer in com.yammer.metrics
 

Methods in com.yammer.metrics that return Timer
static Timer Metrics.newTimer(Class<?> klass, String name)
          Creates a new Timer and registers it under the given class and name, measuring elapsed time in milliseconds and invocations per second.
static Timer Metrics.newTimer(Class<?> klass, String name, String scope)
          Creates a new Timer and registers it under the given class, name, and scope, measuring elapsed time in milliseconds and invocations per second.
static Timer Metrics.newTimer(Class<?> klass, String name, String scope, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new Timer and registers it under the given class, name, and scope.
static Timer Metrics.newTimer(Class<?> klass, String name, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new Timer and registers it under the given class and name.
static Timer Metrics.newTimer(MetricName metricName, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new Timer and registers it under the given metric name.
 

Uses of Timer in com.yammer.metrics.core
 

Methods in com.yammer.metrics.core that return Timer
 Timer MetricsRegistry.newTimer(Class<?> klass, String name)
          Creates a new Timer and registers it under the given class and name, measuring elapsed time in milliseconds and invocations per second.
 Timer MetricsRegistry.newTimer(Class<?> klass, String name, String scope)
          Creates a new Timer and registers it under the given class, name, and scope, measuring elapsed time in milliseconds and invocations per second.
 Timer MetricsRegistry.newTimer(Class<?> klass, String name, String scope, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new Timer and registers it under the given class, name, and scope.
 Timer MetricsRegistry.newTimer(Class<?> klass, String name, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new Timer and registers it under the given class and name.
 Timer MetricsRegistry.newTimer(MetricName metricName, TimeUnit durationUnit, TimeUnit rateUnit)
          Creates a new Timer and registers it under the given metric name.
 

Methods in com.yammer.metrics.core with parameters of type Timer
 void MetricProcessor.processTimer(MetricName name, Timer timer, T context)
          Process the given timer.
 

Uses of Timer in com.yammer.metrics.reporting
 

Methods in com.yammer.metrics.reporting with parameters of type Timer
 void CsvReporter.processTimer(MetricName name, Timer timer, CsvReporter.Context context)
           
 void JmxReporter.processTimer(MetricName name, Timer timer, com.yammer.metrics.reporting.JmxReporter.Context context)
           
 void ConsoleReporter.processTimer(MetricName name, Timer timer, PrintStream stream)
           
 



Copyright © 2012. All Rights Reserved.