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.fabric   
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.fabric
 

Classes in org.apache.camel.fabric that implement DelegateProcessor
 class FabricTraceProcessor
           
 

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 CatchProcessor
          A processor which catches exceptions.
 class ChildUnitOfWorkProcessor
          An UnitOfWorkProcessor that creates a child UnitOfWork that is associated to a parent UnitOfWork.
 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 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 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 RouteContextProcessor
          This processor tracks the current RouteContext while processing the Exchange.
 class RouteInflightRepositoryProcessor
          This processor tracks the current RouteContext while processing the Exchange.
 class RoutePolicyProcessor
          Processor which instruments the RoutePolicy.
 class SamplingThrottler
          A SamplingThrottler is a special kind of throttler.
 class SubUnitOfWorkProcessor
          A processor that processes the processor in a SubUnitOfWork context.
 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 UnitOfWorkProcessor
          Ensures the Exchange is routed under the boundaries of an UnitOfWork.
 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 DelayInterceptor
          An interceptor for delaying routes.
 class HandleFaultInterceptor
           
 class StreamCachingInterceptor
          An interceptor that converts streams messages into a re-readable format by wrapping the stream into a StreamCache.
 class TraceInterceptor
          An interceptor for debugging and tracing routes
 



Apache CAMEL