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

Packages that use UnitOfWork
org.apache.camel The core Camel API. 
org.apache.camel.impl Default implementation classes for Camel Core 
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. 
 

Uses of UnitOfWork in org.apache.camel
 

Methods in org.apache.camel that return UnitOfWork
 UnitOfWork Exchange.getUnitOfWork()
          Returns the unit of work that this exchange belongs to; which may map to zero, one or more physical transactions
 

Methods in org.apache.camel with parameters of type UnitOfWork
 void Exchange.setUnitOfWork(UnitOfWork unitOfWork)
          Sets the unit of work that this exchange belongs to; which may map to zero, one or more physical transactions
 

Uses of UnitOfWork in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement UnitOfWork
 class DefaultUnitOfWork
          The default implementation of UnitOfWork
 class MDCUnitOfWork
          This unit of work supports MDC.
 

Methods in org.apache.camel.impl that return UnitOfWork
 UnitOfWork DefaultUnitOfWork.createChildUnitOfWork(Exchange childExchange)
           
 UnitOfWork DefaultExchange.getUnitOfWork()
           
 UnitOfWork MDCUnitOfWork.newInstance(Exchange exchange)
           
 

Methods in org.apache.camel.impl with parameters of type UnitOfWork
 void DefaultUnitOfWork.setParentUnitOfWork(UnitOfWork parentUnitOfWork)
           
 void DefaultExchange.setUnitOfWork(UnitOfWork unitOfWork)
           
 

Uses of UnitOfWork in org.apache.camel.processor
 

Methods in org.apache.camel.processor that return UnitOfWork
protected  UnitOfWork UnitOfWorkProcessor.createUnitOfWork(Exchange exchange)
          Strategy to create the unit of work for the given exchange.
protected  UnitOfWork ChildUnitOfWorkProcessor.createUnitOfWork(Exchange exchange)
           
 

Methods in org.apache.camel.processor with parameters of type UnitOfWork
protected  boolean UnitOfWorkProcessor.processAsync(Exchange exchange, AsyncCallback callback, UnitOfWork uow)
           
protected  boolean UnitOfWorkProcessor.processSync(Exchange exchange, AsyncCallback callback, UnitOfWork uow)
           
 

Constructors in org.apache.camel.processor with parameters of type UnitOfWork
ChildUnitOfWorkProcessor(UnitOfWork parent, AsyncProcessor processor)
           
ChildUnitOfWorkProcessor(UnitOfWork parent, Processor processor)
           
ChildUnitOfWorkProcessor(UnitOfWork parent, RouteContext routeContext, AsyncProcessor processor)
           
ChildUnitOfWorkProcessor(UnitOfWork parent, RouteContext routeContext, Processor processor)
           
 

Uses of UnitOfWork in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return UnitOfWork
 UnitOfWork UnitOfWork.createChildUnitOfWork(Exchange childExchange)
          Create a child unit of work, which is associated to this unit of work as its parent.
 

Methods in org.apache.camel.spi with parameters of type UnitOfWork
 void UnitOfWork.setParentUnitOfWork(UnitOfWork parentUnitOfWork)
          Sets the parent unit of work.
 



Apache CAMEL