Uses of Class
org.apache.camel.model.MulticastDefinition

Packages that use MulticastDefinition
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
 

Uses of MulticastDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return MulticastDefinition
 MulticastDefinition MulticastDefinition.aggregationStrategy(AggregationStrategy aggregationStrategy)
          Set the multicasting aggregationStrategy
 MulticastDefinition MulticastDefinition.aggregationStrategyRef(String aggregationStrategyRef)
          Set the aggregationStrategy
 MulticastDefinition MulticastDefinition.executorService(ExecutorService executorService)
           
 MulticastDefinition MulticastDefinition.executorServiceRef(String executorServiceRef)
           
 MulticastDefinition ProcessorDefinition.multicast()
          Multicast EIP: Multicasts messages to all its child outputs; so that each processor and destination gets a copy of the original message to avoid the processors interfering with each other.
 MulticastDefinition ProcessorDefinition.multicast(AggregationStrategy aggregationStrategy)
          Multicast EIP: Multicasts messages to all its child outputs; so that each processor and destination gets a copy of the original message to avoid the processors interfering with each other.
 MulticastDefinition ProcessorDefinition.multicast(AggregationStrategy aggregationStrategy, boolean parallelProcessing)
          Multicast EIP: Multicasts messages to all its child outputs; so that each processor and destination gets a copy of the original message to avoid the processors interfering with each other.
 MulticastDefinition MulticastDefinition.onPrepare(Processor onPrepare)
          Uses the Processor when preparing the Exchange to be send.
 MulticastDefinition MulticastDefinition.onPrepareRef(String onPrepareRef)
          Uses the Processor when preparing the Exchange to be send.
 MulticastDefinition MulticastDefinition.parallelProcessing()
          Uses the ExecutorService to do the multicasting work
 MulticastDefinition MulticastDefinition.setAggregationStrategy(AggregationStrategy aggregationStrategy)
           
 MulticastDefinition MulticastDefinition.shareUnitOfWork()
          Shares the UnitOfWork with the parent and each of the sub messages.
 MulticastDefinition MulticastDefinition.stopOnException()
          Will now stop further processing if an exception or failure occurred during processing of an Exchange and the caused exception will be thrown.
 MulticastDefinition MulticastDefinition.streaming()
          Aggregates the responses as the are done (e.g.
 MulticastDefinition MulticastDefinition.timeout(long timeout)
          Sets a timeout value in millis to use when using parallelProcessing.
 



Apache CAMEL