|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Route | |
---|---|
org.apache.camel | The JAXB POJOs for the XML Configuration of the routing rules. |
org.apache.camel.impl | Default implementation classes for Camel Core |
org.apache.camel.management | Camel management |
org.apache.camel.management.event | Camel management events |
org.apache.camel.management.mbean | Camel management JMX Mbeans |
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. |
org.apache.camel.util | Utility classes used by the core of Camel and useful for Camel component developers |
Uses of Route in org.apache.camel |
---|
Methods in org.apache.camel that return types with arguments of type Route | |
---|---|
List<Route> |
CamelContext.getRoutes()
Returns the current routes in this context |
Uses of Route in org.apache.camel.impl |
---|
Classes in org.apache.camel.impl that implement Route | |
---|---|
class |
DefaultRoute
A Route defines the processing used on an inbound message exchange from a specific Endpoint within a CamelContext |
class |
EventDrivenConsumerRoute
A DefaultRoute which starts with an
Event Driven Consumer |
Methods in org.apache.camel.impl that return types with arguments of type Route | |
---|---|
Map<Route,Consumer> |
RouteService.getInputs()
Gets the inputs to the routes. |
Collection<Route> |
RouteService.getRoutes()
|
List<Route> |
DefaultCamelContext.getRoutes()
|
Methods in org.apache.camel.impl with parameters of type Route | |
---|---|
void |
RoutePolicySupport.onExchangeBegin(Route route,
Exchange exchange)
|
void |
ThrottlingInflightRoutePolicy.onExchangeDone(Route route,
Exchange exchange)
|
void |
RoutePolicySupport.onExchangeDone(Route route,
Exchange exchange)
|
protected void |
RouteService.startChildService(Route route,
List<Service> services)
|
protected void |
RouteService.startChildService(Route route,
Service... services)
|
protected void |
RouteService.stopChildService(Route route,
List<Service> services)
|
Method parameters in org.apache.camel.impl with type arguments of type Route | |
---|---|
void |
DefaultCamelContext.setRoutes(List<Route> routes)
|
Constructor parameters in org.apache.camel.impl with type arguments of type Route | |
---|---|
DefaultRouteContext(CamelContext camelContext,
RouteDefinition route,
FromDefinition from,
Collection<Route> routes)
|
|
RouteService(DefaultCamelContext camelContext,
RouteDefinition routeDefinition,
List<RouteContext> routeContexts,
List<Route> routes)
|
Uses of Route in org.apache.camel.management |
---|
Methods in org.apache.camel.management with parameters of type Route | |
---|---|
EventObject |
DefaultEventFactory.createRouteStartedEvent(Route route)
|
EventObject |
DefaultEventFactory.createRouteStoppedEvent(Route route)
|
ObjectName |
DefaultManagementNamingStrategy.getObjectNameForRoute(Route route)
|
void |
DefaultManagementLifecycleStrategy.onServiceAdd(CamelContext context,
Service service,
Route route)
|
void |
DefaultManagementLifecycleStrategy.onServiceRemove(CamelContext context,
Service service,
Route route)
|
Method parameters in org.apache.camel.management with type arguments of type Route | |
---|---|
void |
DefaultManagementLifecycleStrategy.onRoutesAdd(Collection<Route> routes)
|
void |
DefaultManagementLifecycleStrategy.onRoutesRemove(Collection<Route> routes)
|
Uses of Route in org.apache.camel.management.event |
---|
Methods in org.apache.camel.management.event that return Route | |
---|---|
Route |
RouteStoppedEvent.getRoute()
|
Route |
RouteStartedEvent.getRoute()
|
Constructors in org.apache.camel.management.event with parameters of type Route | |
---|---|
RouteStartedEvent(Route source)
|
|
RouteStoppedEvent(Route source)
|
Uses of Route in org.apache.camel.management.mbean |
---|
Methods in org.apache.camel.management.mbean that return Route | |
---|---|
Route |
ManagedService.getRoute()
|
Route |
ManagedRoute.getRoute()
|
Route |
ManagedProcessor.getRoute()
|
Methods in org.apache.camel.management.mbean with parameters of type Route | |
---|---|
void |
ManagedService.setRoute(Route route)
|
void |
ManagedProcessor.setRoute(Route route)
|
Constructors in org.apache.camel.management.mbean with parameters of type Route | |
---|---|
ManagedRoute(CamelContext context,
Route route)
|
Uses of Route in org.apache.camel.model |
---|
Method parameters in org.apache.camel.model with type arguments of type Route | |
---|---|
List<RouteContext> |
RouteDefinition.addRoutes(CamelContext context,
Collection<Route> routes)
|
protected RouteContext |
RouteDefinition.addRoutes(Collection<Route> routes,
FromDefinition fromType)
|
void |
ProcessorDefinition.addRoutes(RouteContext routeContext,
Collection<Route> routes)
|
void |
OnExceptionDefinition.addRoutes(RouteContext routeContext,
Collection<Route> routes)
|
Uses of Route in org.apache.camel.processor |
---|
Methods in org.apache.camel.processor with parameters of type Route | |
---|---|
void |
RoutePolicyProcessor.setRoute(Route route)
|
Uses of Route in org.apache.camel.spi |
---|
Methods in org.apache.camel.spi with parameters of type Route | |
---|---|
EventObject |
EventFactory.createRouteStartedEvent(Route route)
Creates an EventObject for Route has been started successfully. |
EventObject |
EventFactory.createRouteStoppedEvent(Route route)
Creates an EventObject for Route has been stopped successfully. |
ObjectName |
ManagementNamingStrategy.getObjectNameForRoute(Route route)
|
void |
RoutePolicy.onExchangeBegin(Route route,
Exchange exchange)
Callback invokes when an Exchange is started being routed on the given Route |
void |
RoutePolicy.onExchangeDone(Route route,
Exchange exchange)
Callback invokes when an Exchange is done being routed, where it started from the given Route
Notice this callback is invoked when the Exchange is done and the Route is the route where
the Exchange was started. |
void |
LifecycleStrategy.onServiceAdd(CamelContext context,
Service service,
Route route)
Notification on adding a Service . |
void |
LifecycleStrategy.onServiceRemove(CamelContext context,
Service service,
Route route)
Notification on removing a Service . |
Method parameters in org.apache.camel.spi with type arguments of type Route | |
---|---|
void |
LifecycleStrategy.onRoutesAdd(Collection<Route> routes)
Notification on adding Route (s). |
void |
LifecycleStrategy.onRoutesRemove(Collection<Route> routes)
Notification on removing Route (s). |
Uses of Route in org.apache.camel.util |
---|
Methods in org.apache.camel.util with parameters of type Route | |
---|---|
static void |
EventHelper.notifyRouteStarted(CamelContext context,
Route route)
|
static void |
EventHelper.notifyRouteStopped(CamelContext context,
Route route)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |