Uses of Interface
org.apache.camel.PollingConsumer

Packages that use PollingConsumer
org.apache.camel The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.processor A collection of Processor implementations which are used to implement the Enterprise Integration Patterns 
 

Uses of PollingConsumer in org.apache.camel
 

Methods in org.apache.camel that return PollingConsumer
 PollingConsumer Endpoint.createPollingConsumer()
          Creates a new Polling Consumer so that the caller can poll message exchanges from the consumer using receive(), receiveNoWait() or receive(long) whenever it is ready to do so rather than using the Event Based Consumer returned by Endpoint.createConsumer(Processor)
 

Uses of PollingConsumer in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement PollingConsumer
 class EventDrivenPollingConsumer
          A default implementation of the PollingConsumer which uses the normal asynchronous consumer mechanism along with a BlockingQueue to allow the caller to pull messages on demand.
 class PollingConsumerSupport
          A useful base class for implementations of PollingConsumer
 class ProcessorPollingConsumer
          A simple implementation of PollingConsumer which just uses a Processor.
 

Methods in org.apache.camel.impl that return PollingConsumer
protected  PollingConsumer CamelPostProcessorHelper.createInjectionPollingConsumer(Endpoint endpoint, Object bean, String beanName)
          Factory method to create a started PollingConsumer to be injected into a POJO
 PollingConsumer ProcessorEndpoint.createPollingConsumer()
           
 PollingConsumer InterceptSendToEndpoint.createPollingConsumer()
           
 PollingConsumer DefaultEndpoint.createPollingConsumer()
           
 PollingConsumer ConsumerCache.getConsumer(Endpoint endpoint)
           
 

Constructor parameters in org.apache.camel.impl with type arguments of type PollingConsumer
ConsumerCache(CamelContext camelContext, Map<String,PollingConsumer> cache)
           
 

Uses of PollingConsumer in org.apache.camel.processor
 

Constructors in org.apache.camel.processor with parameters of type PollingConsumer
PollEnricher(AggregationStrategy aggregationStrategy, PollingConsumer consumer, long timeout)
          Creates a new PollEnricher.
PollEnricher(PollingConsumer consumer)
          Creates a new PollEnricher.
 



Apache CAMEL