01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest.spring.bean;
05:
06: import java.util.Date;
07:
08: public interface EventManager {
09:
10: int size();
11:
12: void publishEvents(Object source, String message, int count);
13:
14: void publishLocalEvent(Object source, String message);
15:
16: void clear();
17:
18: Date getLastEventTime();
19:
20: }
|