Uses of Class
org.apache.camel.component.seda.SedaEndpoint

Packages that use SedaEndpoint
org.apache.camel.component.seda The SEDA Component for asynchronous SEDA exchanges on a BlockingQueue within a single CamelContext 
org.apache.camel.component.vm The VM Component for asynchronous SEDA exchanges on a BlockingQueue within the current JVM; so across CamelContext instances. 
 

Uses of SedaEndpoint in org.apache.camel.component.seda
 

Methods in org.apache.camel.component.seda that return SedaEndpoint
 SedaEndpoint SedaPollingConsumer.getEndpoint()
           
 

Methods in org.apache.camel.component.seda with parameters of type SedaEndpoint
 QueueReference SedaComponent.getOrCreateQueue(SedaEndpoint endpoint, Integer size)
          Deprecated. use
 QueueReference SedaComponent.getOrCreateQueue(SedaEndpoint endpoint, Integer size, Boolean multipleConsumers)
          Deprecated. use SedaComponent.getOrCreateQueue(SedaEndpoint, Integer, Boolean, BlockingQueueFactory)
 QueueReference SedaComponent.getOrCreateQueue(SedaEndpoint endpoint, Integer size, Boolean multipleConsumers, BlockingQueueFactory<Exchange> customQueueFactory)
           
 QueueReference SedaComponent.registerQueue(SedaEndpoint endpoint, BlockingQueue<Exchange> queue)
           
 

Constructors in org.apache.camel.component.seda with parameters of type SedaEndpoint
SedaConsumer(SedaEndpoint endpoint, Processor processor)
           
SedaProducer(SedaEndpoint endpoint, BlockingQueue<Exchange> queue, WaitForTaskToComplete waitForTaskToComplete, long timeout)
          Deprecated. Use the other constructor.
SedaProducer(SedaEndpoint endpoint, BlockingQueue<Exchange> queue, WaitForTaskToComplete waitForTaskToComplete, long timeout, boolean blockWhenFull)
          Deprecated. Use the other constructor.
SedaProducer(SedaEndpoint endpoint, WaitForTaskToComplete waitForTaskToComplete, long timeout, boolean blockWhenFull)
           
 

Uses of SedaEndpoint in org.apache.camel.component.vm
 

Fields in org.apache.camel.component.vm with type parameters of type SedaEndpoint
protected static Map<String,SedaEndpoint> VmComponent.ENDPOINTS
           
 



Apache Camel