Uses of Interface
org.apache.camel.guice.support.Closer

Packages that use Closer
org.apache.camel.guice.jsr250   
org.apache.camel.guice.support   
 

Uses of Closer in org.apache.camel.guice.jsr250
 

Classes in org.apache.camel.guice.jsr250 that implement Closer
 class PreDestroyCloser
          Supports the PreDestroy annotation lifecycle from JSR250.
 

Uses of Closer in org.apache.camel.guice.support
 

Classes in org.apache.camel.guice.support that implement Closer
 class CompositeCloser
          A Composite implementation of Closer
 

Methods in org.apache.camel.guice.support that return Closer
static Closer CompositeCloser.newInstance(Collection<Closer> closers)
          Returns a Closer for the given lists of closer strategies or returning null if the collection is empty
 

Methods in org.apache.camel.guice.support with parameters of type Closer
static void Closers.close(Object key, Object objectToBeClosed, Closer closer, CloseErrors errors)
          Closes the given object with the Closer if the object is not null
 

Method parameters in org.apache.camel.guice.support with type arguments of type Closer
static Closer CompositeCloser.newInstance(Collection<Closer> closers)
          Returns a Closer for the given lists of closer strategies or returning null if the collection is empty
 

Constructor parameters in org.apache.camel.guice.support with type arguments of type Closer
CompositeCloser(Iterable<Closer> closers)
           
 



Apache Camel