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

Packages that use ServicePool
org.apache.camel The core Camel API. 
org.apache.camel.impl Default implementation classes for Camel Core 
 

Uses of ServicePool in org.apache.camel
 

Methods in org.apache.camel that return ServicePool
 ServicePool<Endpoint,Producer> CamelContext.getProducerServicePool()
          Gets the service pool for Producer pooling.
 

Methods in org.apache.camel with parameters of type ServicePool
 void CamelContext.setProducerServicePool(ServicePool<Endpoint,Producer> servicePool)
          Sets a pluggable service pool to use for Producer pooling.
 

Uses of ServicePool in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement ServicePool
 class DefaultProducerServicePool
          A service pool for Producer.
 class DefaultServicePool<Key,Service>
          Default implementation to inherit for a basic service pool.
 class SharedProducerServicePool
          A shared DefaultProducerServicePool which is used by CamelContext by default.
 

Methods in org.apache.camel.impl that return ServicePool
 ServicePool<Endpoint,Producer> DefaultCamelContext.getProducerServicePool()
           
 

Methods in org.apache.camel.impl with parameters of type ServicePool
 void DefaultCamelContext.setProducerServicePool(ServicePool<Endpoint,Producer> producerServicePool)
           
 

Constructors in org.apache.camel.impl with parameters of type ServicePool
ProducerCache(Object source, CamelContext camelContext, ServicePool<Endpoint,Producer> producerServicePool, Map<String,Producer> cache)
           
 



Apache Camel