Package org.apache.camel.api.management.mbean

Examples of org.apache.camel.api.management.mbean.ManagedBacklogTracerMBean.dumpTracedMessages()


        if (camelTracer != null) {
          List<BacklogTracerEventMessage> traceMessages = null;
          if (id == null) {
            traceMessages = camelTracer.dumpAllTracedMessages();
          } else {
            traceMessages = camelTracer.dumpTracedMessages(id);
          }
          traceList.addBackLogTraceMessages(traceMessages);
        } else {
          // TODO should we highlight in the UI that there's no tracer enabled?
        }
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.