Uses of Interface
org.apache.camel.Consumer

Packages that use Consumer
org.apache.camel The core Camel API 
org.apache.camel.component.direct The Direct Component which synchronously invokes all the consumers when a producer sends an exchange to the endpoint. 
org.apache.camel.component.file The File Component for working with file systems. 
org.apache.camel.component.jmx The JMX Component for monitoring JMX Attributes uisng a CounterMonitor. 
org.apache.camel.component.mock The Mock Component which is used for testing of routing and mediation rules. 
org.apache.camel.component.pojo The POJO Component provides a simple Reflection based transport. 
org.apache.camel.component.pojo.timer The Timer Component extends the POJO component to provide a simple timer 
org.apache.camel.component.processor A component to make it easy to turn a Processor into a fully fledged Endpoint 
org.apache.camel.component.queue The Queue Component provides asynchronous (in-VM) dispatch of messages to consumer to implement SEDA based message routing using Java's Queue interface. 
org.apache.camel.impl Default implementation classes for Camel Core 
 

Uses of Consumer in org.apache.camel
 

Subinterfaces of Consumer in org.apache.camel
 interface PollingConsumer<E extends Exchange>
          Represents a Polling Consumer where the caller polls for messages when it is ready.
 

Methods in org.apache.camel that return Consumer
 Consumer<E> Endpoint.createConsumer(Processor processor)
          Creates a new Event Driven Consumer which consumes messages from the endpoint using the given processor
 

Uses of Consumer in org.apache.camel.component.direct
 

Methods in org.apache.camel.component.direct that return Consumer
 Consumer<E> DirectEndpoint.createConsumer(Processor processor)
           
 

Uses of Consumer in org.apache.camel.component.file
 

Classes in org.apache.camel.component.file that implement Consumer
 class FileConsumer
           
 

Methods in org.apache.camel.component.file that return Consumer
 Consumer<FileExchange> FileEndpoint.createConsumer(Processor file)
           
 

Uses of Consumer in org.apache.camel.component.jmx
 

Classes in org.apache.camel.component.jmx that implement Consumer
 class JMXConsumer
          Generate an Exchange after getting a JMX Notification
 

Methods in org.apache.camel.component.jmx that return Consumer
 Consumer<JMXExchange> JMXEndpoint.createConsumer(Processor proc)
           
 

Uses of Consumer in org.apache.camel.component.mock
 

Methods in org.apache.camel.component.mock that return Consumer
 Consumer<Exchange> MockEndpoint.createConsumer(Processor processor)
           
 

Uses of Consumer in org.apache.camel.component.pojo
 

Methods in org.apache.camel.component.pojo that return Consumer
 Consumer<PojoExchange> PojoEndpoint.createConsumer(Processor processor)
           
 

Uses of Consumer in org.apache.camel.component.pojo.timer
 

Classes in org.apache.camel.component.pojo.timer that implement Consumer
 class TimerConsumer
           
 

Methods in org.apache.camel.component.pojo.timer that return Consumer
 Consumer<PojoExchange> TimerEndpoint.createConsumer(Processor processor)
           
 

Uses of Consumer in org.apache.camel.component.processor
 

Classes in org.apache.camel.component.processor that implement Consumer
 class ProcessorEndpointConsumer
           
 

Methods in org.apache.camel.component.processor that return Consumer
 Consumer<Exchange> ProcessorEndpoint.createConsumer(Processor processor)
           
 

Uses of Consumer in org.apache.camel.component.queue
 

Classes in org.apache.camel.component.queue that implement Consumer
 class QueueEndpointConsumer<E extends Exchange>
           
 

Methods in org.apache.camel.component.queue that return Consumer
 Consumer<E> QueueEndpoint.createConsumer(Processor processor)
           
 

Uses of Consumer in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement Consumer
 class DefaultConsumer<E extends Exchange>
           
 class DefaultPollingConsumer<E extends Exchange>
          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<E extends Exchange>
          A useful base class for implementations of PollingConsumer
 class ScheduledPollConsumer<E extends Exchange>
          A useful base class for any consumer which is polling based
 

Methods in org.apache.camel.impl with parameters of type Consumer
protected  void ScheduledPollEndpoint.configureConsumer(Consumer<E> consumer)
           
 



Copyright © 2007 Apache Software Foundation. All Rights Reserved.