001 package com.hammurapi.eventbus;
002
003 /**
004 * Instances with handler methods which maintain state
005 * shall implement this method to reset state.
006 * @author Pavel Vlasov
007 *
008 */
009 public interface Resettable {
010
011 void reset();
012 }