Interface ManagedMulticastMBean
-
- All Superinterfaces:
ManagedCounterMBean
,ManagedPerformanceCounterMBean
,ManagedProcessorMBean
- All Known Subinterfaces:
ManagedSplitterMBean
public interface ManagedMulticastMBean extends ManagedProcessorMBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Long
getTimeout()
Boolean
isParallelAggregate()
Boolean
isParallelProcessing()
Boolean
isShareUnitOfWork()
Boolean
isStopOnException()
Boolean
isStreaming()
-
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedCounterMBean
getExchangesTotal, getResetTimestamp, getStartTimestamp, reset
-
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedPerformanceCounterMBean
dumpStatsAsXml, getDeltaProcessingTime, getExchangesCompleted, getExchangesFailed, getExchangesInflight, getExternalRedeliveries, getFailuresHandled, getFirstExchangeCompletedExchangeId, getFirstExchangeCompletedTimestamp, getFirstExchangeFailureExchangeId, getFirstExchangeFailureTimestamp, getLastExchangeCompletedExchangeId, getLastExchangeCompletedTimestamp, getLastExchangeCreatedTimestamp, getLastExchangeFailureExchangeId, getLastExchangeFailureTimestamp, getLastProcessingTime, getMaxProcessingTime, getMeanProcessingTime, getMinProcessingTime, getRedeliveries, getTotalProcessingTime, isStatisticsEnabled, setStatisticsEnabled
-
Methods inherited from interface org.apache.camel.api.management.mbean.ManagedProcessorMBean
dumpProcessorAsXml, getCamelId, getCamelManagementName, getIndex, getLevel, getProcessorId, getProcessorName, getRouteId, getSourceLineNumber, getSourceLocation, getState, getStepId, getSupportExtendedInformation, start, stop
-
-
-
-
Method Detail
-
isParallelAggregate
@ManagedAttribute(description="If enabled then the aggregate method on AggregationStrategy can be called concurrently.") Boolean isParallelAggregate()
-
isParallelProcessing
@ManagedAttribute(description="If enabled then sending messages to the multicasts occurs concurrently.") Boolean isParallelProcessing()
-
isStreaming
@ManagedAttribute(description="If enabled then Camel will process replies out-of-order, eg in the order they come back.") Boolean isStreaming()
-
isStopOnException
@ManagedAttribute(description="Will now stop further processing if an exception or failure occurred during processing.") Boolean isStopOnException()
-
isShareUnitOfWork
@ManagedAttribute(description="Shares the UnitOfWork with the parent and the resource exchange") Boolean isShareUnitOfWork()
-
getTimeout
@ManagedAttribute(description="The total timeout specified in millis, when using parallel processing.") Long getTimeout()
-
-