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

Packages that use RoutePolicy
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.processor A collection of Processor implementations which are used to implement the Enterprise Integration Patterns 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of RoutePolicy in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement RoutePolicy
 class RoutePolicySupport
          A base class for developing custom RoutePolicy implementations.
 class ThrottlingInflightRoutePolicy
          A throttle based RoutePolicy which is capable of dynamic throttling a route based on number of current inflight exchanges.
 

Methods in org.apache.camel.impl that return types with arguments of type RoutePolicy
 List<RoutePolicy> DefaultRouteContext.getRoutePolicyList()
           
 

Method parameters in org.apache.camel.impl with type arguments of type RoutePolicy
 void DefaultRouteContext.setRoutePolicyList(List<RoutePolicy> routePolicyList)
           
 

Uses of RoutePolicy in org.apache.camel.model
 

Methods in org.apache.camel.model that return types with arguments of type RoutePolicy
 List<RoutePolicy> RouteDefinition.getRoutePolicies()
           
 

Methods in org.apache.camel.model with parameters of type RoutePolicy
 RouteDefinition RouteDefinition.routePolicy(RoutePolicy... policies)
          Configures route policies for this route
 

Method parameters in org.apache.camel.model with type arguments of type RoutePolicy
 void RouteDefinition.setRoutePolicies(List<RoutePolicy> routePolicies)
           
 

Uses of RoutePolicy in org.apache.camel.processor
 

Methods in org.apache.camel.processor with parameters of type RoutePolicy
protected  boolean RoutePolicyProcessor.isRoutePolicyRunAllowed(RoutePolicy policy)
          Strategy to determine if this policy is allowed to run
 

Constructor parameters in org.apache.camel.processor with type arguments of type RoutePolicy
RoutePolicyProcessor(Processor processor, List<RoutePolicy> routePolicies)
           
 

Uses of RoutePolicy in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return types with arguments of type RoutePolicy
 List<RoutePolicy> RouteContext.getRoutePolicyList()
          Gets the route policy List
 

Method parameters in org.apache.camel.spi with type arguments of type RoutePolicy
 void RouteContext.setRoutePolicyList(List<RoutePolicy> routePolicyList)
          Sets a custom route policy List
 



Apache CAMEL