Uses of Interface
org.apache.camel.spi.ShutdownPrepared

Packages that use ShutdownPrepared
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.seda The SEDA Component for asynchronous SEDA exchanges on a BlockingQueue within a single CamelContext 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.processor.aggregate Helper classes for the Aggregator pattern. 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

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

Classes in org.apache.camel.component.direct that implement ShutdownPrepared
 class DirectConsumer
          The direct consumer.
 

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

Classes in org.apache.camel.component.file that implement ShutdownPrepared
 class FileConsumer
          File consumer.
 class GenericFileConsumer<T>
          Base class for file consumers.
 

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

Classes in org.apache.camel.component.seda that implement ShutdownPrepared
 class SedaConsumer
          A Consumer for the SEDA component.
 

Uses of ShutdownPrepared in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement ShutdownPrepared
 class ScheduledBatchPollingConsumer
          A useful base class for any consumer which is polling batch based
 

Uses of ShutdownPrepared in org.apache.camel.processor.aggregate
 

Classes in org.apache.camel.processor.aggregate that implement ShutdownPrepared
 class AggregateProcessor
          An implementation of the Aggregator pattern where a batch of messages are processed (up to a maximum amount or until some timeout is reached) and messages for the same correlation key are combined together using some kind of AggregationStrategy (by default the latest message is used) to compress many message exchanges into a smaller number of exchanges.
 

Uses of ShutdownPrepared in org.apache.camel.spi
 

Subinterfaces of ShutdownPrepared in org.apache.camel.spi
 interface ShutdownAware
          Allows Consumer to fine grained control on shutdown which mostly have to cater for in-memory based components.
 



Apache CAMEL