Package org.apache.camel.component.metrics.timer.TimerEndpoint

Examples of org.apache.camel.component.metrics.timer.TimerEndpoint.TimerAction


    }

    @Override
    protected void doProcess(Exchange exchange, TimerEndpoint endpoint, MetricRegistry registry, String metricsName) throws Exception {
        Message in = exchange.getIn();
        TimerAction action = endpoint.getAction();
        TimerAction finalAction = in.getHeader(HEADER_TIMER_ACTION, action, TimerAction.class);
        if (finalAction == TimerAction.start) {
            handleStart(exchange, registry, metricsName);
        } else if (finalAction == TimerAction.stop) {
            handleStop(exchange, registry, metricsName);
        } else {
View Full Code Here

TOP

Related Classes of org.apache.camel.component.metrics.timer.TimerEndpoint.TimerAction

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.