Uses of Interface
org.apache.camel.builder.ProcessorFactory

Packages that use ProcessorFactory
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
 

Uses of ProcessorFactory in org.apache.camel.builder
 

Classes in org.apache.camel.builder that implement ProcessorFactory
 class ChoiceBuilder
           
 class ConstantProcessorBuilder
           
 class FilterBuilder
           
 class FromBuilder
           
 class IdempotentConsumerBuilder
          A builder of an IdempotentConsumer
 class InterceptorBuilder
           
 class MulticastBuilder
          A builder for the MulticastProcessor pattern
 class PipelineBuilder
          A builder for the Pipeline pattern
 class PolicyBuilder
           
 class RecipientListBuilder<E extends Exchange>
          Creates a dynamic Recipient List pattern.
 class ResequencerBuilder
           
 class SplitterBuilder
          A builder for the Splitter pattern where an expression is evaluated to iterate through each of the parts of a message and then each part is then send to some endpoint.
 class ToBuilder<E extends Exchange>
           
 class WhenBuilder
           
 

Methods in org.apache.camel.builder that return ProcessorFactory
 ProcessorFactory FromBuilder.addProcessBuilder(ProcessorFactory processFactory)
           
 ProcessorFactory DeadLetterChannelBuilder.getDeadLetterFactory()
           
 ProcessorFactory FromBuilder.pipeline(Collection<Endpoint> endpoints)
          Creates a Pipeline of the list of endpoints so that the message will get processed by each endpoint in turn and for request/response the output of one endpoint will be the input of the next endpoint
 ProcessorFactory FromBuilder.pipeline(Endpoint... endpoints)
          Creates a Pipeline of the list of endpoints so that the message will get processed by each endpoint in turn and for request/response the output of one endpoint will be the input of the next endpoint
 ProcessorFactory FromBuilder.pipeline(String... uris)
          Creates a Pipeline of the list of endpoints so that the message will get processed by each endpoint in turn and for request/response the output of one endpoint will be the input of the next endpoint
 ProcessorFactory FromBuilder.to(Collection<Endpoint> endpoints)
          Sends the exchange to a list of endpoint using the MulticastProcessor pattern
 ProcessorFactory FromBuilder.to(Endpoint... endpoints)
          Sends the exchange to a list of endpoints using the MulticastProcessor pattern
 ProcessorFactory FromBuilder.to(Endpoint endpoint)
          Sends the exchange to the given endpoint
 ProcessorFactory FromBuilder.to(String... uris)
          Sends the exchange to a list of endpoints using the MulticastProcessor pattern
 ProcessorFactory FromBuilder.to(String uri)
          Sends the exchange to the given endpoint URI
 

Methods in org.apache.camel.builder with parameters of type ProcessorFactory
 ProcessorFactory FromBuilder.addProcessBuilder(ProcessorFactory processFactory)
           
protected  Processor FromBuilder.makeProcessor(ProcessorFactory processFactory)
          Creates the processor and wraps it in any necessary interceptors and error handlers
 void DeadLetterChannelBuilder.setDeadLetterFactory(ProcessorFactory deadLetterFactory)
          Sets the default dead letter queue factory
 

Constructors in org.apache.camel.builder with parameters of type ProcessorFactory
DeadLetterChannelBuilder(ProcessorFactory deadLetterFactory)
           
 



Copyright © 2007 Apache Software Foundation. All Rights Reserved.