Uses of Interface
org.apache.camel.AsyncProducer
-
Packages that use AsyncProducer Package Description org.apache.camel The core Camel API.org.apache.camel.spi Service Provider Interfaces used by the Camel runtime which are plugin strategies. -
-
Uses of AsyncProducer in org.apache.camel
Methods in org.apache.camel that return AsyncProducer Modifier and Type Method Description AsyncProducer
Endpoint. createAsyncProducer()
Creates a new producer which is used send messages into the endpoint Important: Do not do any initialization in the constructor of theProducer
. -
Uses of AsyncProducer in org.apache.camel.spi
Methods in org.apache.camel.spi that return AsyncProducer Modifier and Type Method Description AsyncProducer
ProducerCache. acquireProducer(Endpoint endpoint)
Acquires a pooled producer which you must release back again after usage using theProducerCache.releaseProducer(org.apache.camel.Endpoint, org.apache.camel.AsyncProducer)
method.AsyncProducer
InternalProcessorFactory. createInterceptSendToEndpointProcessor(InterceptSendToEndpoint endpoint, Endpoint delegate, AsyncProducer producer, boolean skip)
AsyncProducer
InternalProcessorFactory. createUnitOfWorkProducer(Producer producer)
Methods in org.apache.camel.spi with parameters of type AsyncProducer Modifier and Type Method Description AsyncProducer
InternalProcessorFactory. createInterceptSendToEndpointProcessor(InterceptSendToEndpoint endpoint, Endpoint delegate, AsyncProducer producer, boolean skip)
boolean
ProducerCache.AsyncProducerCallback. doInAsyncProducer(AsyncProducer asyncProducer, Exchange exchange, AsyncCallback callback)
Performs operation on the given producer to send the given exchange.void
ProducerCache. releaseProducer(Endpoint endpoint, AsyncProducer producer)
Releases an acquired producer back after usage.
-