Package org.apache.camel.spi
Interface UnitOfWorkFactory
-
- All Superinterfaces:
AfterPropertiesConfigured
public interface UnitOfWorkFactory extends AfterPropertiesConfigured
Factory to createUnitOfWork.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidafterPropertiesConfigured(CamelContext camelContext)Callback invoked after the element have configured its properties.UnitOfWorkcreateUnitOfWork(Exchange exchange)Creates a newUnitOfWork
-
-
-
Method Detail
-
createUnitOfWork
UnitOfWork createUnitOfWork(Exchange exchange)
Creates a newUnitOfWork- Parameters:
exchange- the exchange- Returns:
- the created
UnitOfWork
-
afterPropertiesConfigured
default void afterPropertiesConfigured(CamelContext camelContext)
Description copied from interface:AfterPropertiesConfiguredCallback invoked after the element have configured its properties. This allows to perform any post init work.- Specified by:
afterPropertiesConfiguredin interfaceAfterPropertiesConfigured- Parameters:
camelContext- the Camel Context
-
-