001package systems.dmx.core.storage.spi;
002
003
004
005public interface DMXTransaction {
006
007    void success();
008
009    void failure();
010
011    void finish();
012}