data.ooimpl
Interface SelfManagingDBEDestination
- All Known Implementing Classes:
- CatalogImpl, StockImpl
- public interface SelfManagingDBEDestination
- extends DataBasketEntryDestination
DataBasketEntryDestination that knows how to rollback or commit add operations.
- Since:
- v2.0
- See Also:
DataBasketEntryImpl
- Source Code:
- SelfManagingDBEDestination.java
commitAdd
public void commitAdd(DataBasket db,
DataBasketEntry dbe)
- Called when an add must be commited.
- Override:
- Always.
- Parameters:
db
- the DataBasket that issued the commit requestdbe
- the DataBasketEntry describing the operation to commit.
rollbackAdd
public void rollbackAdd(DataBasket db,
DataBasketEntry dbe)
- Called when an add must be rolled back.
- Override:
- Always.
- Parameters:
db
- the DataBasket that issued the rollback requestdbe
- the DataBasketEntry describing the operation to rollback.