1 //Prevayler(TM) - The Free-Software Prevalence Layer. 2 //Copyright (C) 2001-2003 Klaus Wuestefeld 3 //This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 4 5 package org.prevayler.implementation.publishing; 6 7 import java.util.Date; 8 9 import org.prevayler.Transaction; 10 11 12 public interface TransactionSubscriber { 13 14 public void receive(Transaction transaction, Date timestamp); 15 16 } 17