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

Packages that use LifecycleStrategy
org.apache.camel The core Camel API. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.management Camel management 
org.apache.camel.support Base classes that help to implement the camel API and are expected to be extended by the user 
 

Uses of LifecycleStrategy in org.apache.camel
 

Methods in org.apache.camel that return types with arguments of type LifecycleStrategy
 List<LifecycleStrategy> CamelContext.getLifecycleStrategies()
          Returns the lifecycle strategies used to handle lifecycle notifications
 

Methods in org.apache.camel with parameters of type LifecycleStrategy
 void CamelContext.addLifecycleStrategy(LifecycleStrategy lifecycleStrategy)
          Adds the given lifecycle strategy to be used.
 

Uses of LifecycleStrategy in org.apache.camel.impl
 

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

Methods in org.apache.camel.impl with parameters of type LifecycleStrategy
 void DefaultCamelContext.addLifecycleStrategy(LifecycleStrategy lifecycleStrategy)
           
 

Method parameters in org.apache.camel.impl with type arguments of type LifecycleStrategy
 void DefaultCamelContext.setLifecycleStrategies(List<LifecycleStrategy> lifecycleStrategies)
           
 

Uses of LifecycleStrategy in org.apache.camel.management
 

Classes in org.apache.camel.management that implement LifecycleStrategy
 class DefaultManagementLifecycleStrategy
          Default JMX managed lifecycle strategy that registered objects using the configured ManagementStrategy.
 

Uses of LifecycleStrategy in org.apache.camel.support
 

Classes in org.apache.camel.support that implement LifecycleStrategy
 class LifecycleStrategySupport
          A useful base class for LifecycleStrategy implementations.
 



Apache Camel