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

Packages that use RouteStartupOrder
org.apache.camel The core Camel API. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
 

Uses of RouteStartupOrder in org.apache.camel
 

Methods in org.apache.camel that return types with arguments of type RouteStartupOrder
 List<RouteStartupOrder> CamelContext.getRouteStartupOrder()
          Returns the order in which the route inputs was started.
 

Uses of RouteStartupOrder in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement RouteStartupOrder
 class DefaultRouteStartupOrder
          Default implementation of RouteStartupOrder.
 

Methods in org.apache.camel.impl that return types with arguments of type RouteStartupOrder
 List<RouteStartupOrder> DefaultCamelContext.getRouteStartupOrder()
           
 

Methods in org.apache.camel.impl with parameters of type RouteStartupOrder
 boolean DefaultShutdownStrategy.shutdown(CamelContext context, RouteStartupOrder route, long timeout, TimeUnit timeUnit, boolean abortAfterTimeout)
           
 

Method parameters in org.apache.camel.impl with type arguments of type RouteStartupOrder
protected  boolean DefaultShutdownStrategy.doShutdown(CamelContext context, List<RouteStartupOrder> routes, long timeout, TimeUnit timeUnit, boolean suspendOnly, boolean abortAfterTimeout, boolean forceShutdown)
           
 void DefaultShutdownStrategy.shutdown(CamelContext context, List<RouteStartupOrder> routes)
           
 void DefaultShutdownStrategy.shutdown(CamelContext context, List<RouteStartupOrder> routes, long timeout, TimeUnit timeUnit)
           
 void DefaultShutdownStrategy.shutdownForced(CamelContext context, List<RouteStartupOrder> routes)
           
protected  void DefaultShutdownStrategy.shutdownRoutesNow(List<RouteStartupOrder> routes)
          Shutdown all the consumers immediately.
 void DefaultShutdownStrategy.suspend(CamelContext context, List<RouteStartupOrder> routes)
           
 void DefaultShutdownStrategy.suspend(CamelContext context, List<RouteStartupOrder> routes, long timeout, TimeUnit timeUnit)
           
 

Uses of RouteStartupOrder in org.apache.camel.spi
 

Methods in org.apache.camel.spi with parameters of type RouteStartupOrder
 boolean ShutdownStrategy.shutdown(CamelContext context, RouteStartupOrder route, long timeout, TimeUnit timeUnit, boolean abortAfterTimeout)
          Shutdown the route using a specified timeout instead of the default timeout values and supports abortAfterTimeout mode
 

Method parameters in org.apache.camel.spi with type arguments of type RouteStartupOrder
 void ShutdownStrategy.shutdown(CamelContext context, List<RouteStartupOrder> routes)
          Shutdown the routes
 void ShutdownStrategy.shutdown(CamelContext context, List<RouteStartupOrder> routes, long timeout, TimeUnit timeUnit)
          Shutdown the routes using a specified timeout instead of the default timeout values
 void ShutdownStrategy.shutdownForced(CamelContext context, List<RouteStartupOrder> routes)
          Shutdown the routes, forcing shutdown being more aggressive, if timeout occurred.
 void ShutdownStrategy.suspend(CamelContext context, List<RouteStartupOrder> routes)
          Suspends the routes
 void ShutdownStrategy.suspend(CamelContext context, List<RouteStartupOrder> routes, long timeout, TimeUnit timeUnit)
          Suspends the routes using a specified timeout instead of the default timeout values
 



Apache Camel