Uses of Interface
org.apache.camel.DelegateProcessor

Packages that use DelegateProcessor
org.apache.camel.component.directvm The Direct VM Component which synchronously invokes the consumer when a producer sends an exchange to the endpoint. 
org.apache.camel.management Camel management 
org.apache.camel.processor A collection of Processor implementations which are used to implement the Enterprise Integration Patterns 
org.apache.camel.processor.interceptor Helper classes for interceptors. 
 

Uses of DelegateProcessor in org.apache.camel.component.directvm
 

Classes in org.apache.camel.component.directvm that implement DelegateProcessor
 class DirectVmProcessor
           
 

Uses of DelegateProcessor in org.apache.camel.management
 

Classes in org.apache.camel.management that implement DelegateProcessor
 class InstrumentationProcessor
          JMX enabled processor that uses the ManagedCounter for instrumenting processing of exchanges.
 

Uses of DelegateProcessor in org.apache.camel.processor
 

Classes in org.apache.camel.processor that implement DelegateProcessor
 class CamelInternalProcessor
          Internal Processor that Camel routing engine used during routing for cross cutting functionality such as: Execute UnitOfWork Keeping track which route currently is being routed Execute RoutePolicy Gather JMX performance statics Tracing Debugging Message History Stream Caching ...
 class CatchProcessor
          A processor which catches exceptions.
 class Delayer
          A Delayer which delays processing the exchange until the correct amount of time has elapsed using an expression to determine the delivery time.
 class DelayProcessorSupport
          A useful base class for any processor which provides some kind of throttling or delayed processing.
 class DelegateAsyncProcessor
          A Delegate pattern which delegates processing to a nested AsyncProcessor which can be useful for implementation inheritance when writing an Policy

Important: This implementation does support the asynchronous routing engine.

 class DelegateProcessor
          A Delegate pattern which delegates processing to a nested Processor which can be useful for implementation inheritance when writing an Policy

Important: This implementation does not support the asynchronous routing engine.

 class DelegateSyncProcessor
          A Delegate pattern which delegates synchronous processing to a nested Processor which can be useful for implementation inheritance when writing an Policy

Important: This implementation does support the asynchronous routing engine, only.

 class FatalFallbackErrorHandler
          An ErrorHandler used as a safe fallback when processing by other error handlers such as the OnExceptionDefinition.
 class FilterProcessor
          The processor which implements the Message Filter EIP pattern.
 class FinallyProcessor
          Processor to handle do finally supporting asynchronous routing engine
 class InterceptEndpointProcessor
          Endpoint intercept processor so we know the processor is supposed to intercept an endpoint.
 class LoopProcessor
          The processor which sends messages in a loop.
 class SamplingThrottler
          A SamplingThrottler is a special kind of throttler.
 class Throttler
          A Throttler will set a limit on the maximum number of message exchanges which can be sent to a processor within a specific time period.
 class WrapProcessor
          A processor which ensures wrapping processors is having lifecycle handled.
 

Uses of DelegateProcessor in org.apache.camel.processor.interceptor
 

Classes in org.apache.camel.processor.interceptor that implement DelegateProcessor
 class DefaultChannel
          DefaultChannel is the default Channel.
 class DelayInterceptor
          Deprecated. no longer in use, will be removed in next Camel release.
 class HandleFaultInterceptor
           
 class StreamCachingInterceptor
          Deprecated. no longer in use, will be removed in next Camel release.
 class TraceInterceptor
          An interceptor for debugging and tracing routes
 



Apache Camel