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