Package org.quartz.utils.counter

Examples of org.quartz.utils.counter.CounterManagerImpl


    private final SampledCounter jobsCompletedCount;
   
    SampledStatisticsImpl(QuartzScheduler scheduler) {
        this.scheduler = scheduler;
       
        counterManager = new CounterManagerImpl(new Timer(NAME+"Timer"));
        jobsScheduledCount = createSampledCounter(DEFAULT_SAMPLED_COUNTER_CONFIG);
        jobsExecutingCount = createSampledCounter(DEFAULT_SAMPLED_COUNTER_CONFIG);
        jobsCompletedCount = createSampledCounter(DEFAULT_SAMPLED_COUNTER_CONFIG);
       
        scheduler.addInternalSchedulerListener(this);
View Full Code Here


    private final SampledCounter jobsCompletedCount;
 
  SampledStatisticsImpl(QuartzScheduler scheduler) {
    this.scheduler = scheduler;
   
        counterManager = new CounterManagerImpl(new Timer(NAME+"Timer"));
        jobsScheduledCount = createSampledCounter(DEFAULT_SAMPLED_COUNTER_CONFIG);
        jobsExecutingCount = createSampledCounter(DEFAULT_SAMPLED_COUNTER_CONFIG);
        jobsCompletedCount = createSampledCounter(DEFAULT_SAMPLED_COUNTER_CONFIG);
       
        scheduler.addSchedulerListener(this);
View Full Code Here

TOP

Related Classes of org.quartz.utils.counter.CounterManagerImpl

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.