org.mule.module.management.mbean.FlowConstructStats.java Source code

Java tutorial

Introduction

Here is the source code for org.mule.module.management.mbean.FlowConstructStats.java

Source

/*
 * $Id$
 * --------------------------------------------------------------------------------------
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 *
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.module.management.mbean;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.mule.management.stats.FlowConstructStatistics;

import javax.management.MBeanRegistration;
import javax.management.MBeanServer;
import javax.management.ObjectName;

/**
 * A concrete class that holds management information for a Mule managed flow.
 */
public class FlowConstructStats implements FlowConstructStatsMBean, MBeanRegistration {
    private final FlowConstructStatistics statistics;

    protected MBeanServer server;

    protected ObjectName name;

    /**
     * logger used by this class
     */
    private static Log LOGGER = LogFactory.getLog(FlowConstructStats.class);

    public FlowConstructStats(FlowConstructStatistics statistics) {
        this.statistics = statistics;
    }

    public long getAverageProcessingTime() {
        return statistics.getAverageProcessingTime();
    }

    public long getProcessedEvents() {
        return statistics.getProcessedEvents();
    }

    public long getMaxProcessingTime() {
        return statistics.getMaxProcessingTime();
    }

    public long getMinProcessingTime() {
        return statistics.getMinProcessingTime();
    }

    public long getTotalProcessingTime() {
        return statistics.getTotalProcessingTime();
    }

    public void clearStatistics() {
        statistics.clear();
    }

    public long getAsyncEventsReceived() {
        return statistics.getAsyncEventsReceived();
    }

    public long getSyncEventsReceived() {
        return statistics.getSyncEventsReceived();
    }

    public long getTotalEventsReceived() {
        return statistics.getTotalEventsReceived();
    }

    public long getExecutionErrors() {
        return statistics.getExecutionErrors();
    }

    public long getFatalErrors() {
        return statistics.getFatalErrors();
    }

    public ObjectName preRegister(MBeanServer server, ObjectName name) throws Exception {
        this.server = server;
        this.name = name;
        return name;
    }

    public void postRegister(Boolean registrationDone) {
        // nothing to do
    }

    public void preDeregister() throws Exception {
        // nothing to do
    }

    public void postDeregister() {
        // nothing to do
    }
}