001package co.codewizards.cloudstore.core.repo.local;
002
003import java.util.EventListener;
004
005public interface LocalRepoTransactionPreCloseListener extends EventListener {
006
007        void preCommit(LocalRepoTransactionPreCloseEvent event);
008
009        void preRollback(LocalRepoTransactionPreCloseEvent event);
010
011}