source: events/src/main/java/geniusweb/events/CurrentState.java@ 52

Last change on this file since 52 was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

File size: 1.0 KB
Line 
1package geniusweb.events;
2
3/**
4 * Reports a NegoState as the latest state of the protocol. The negoState is
5 * abstract because the state is not something that can be handled at this place
6 * in the dependency hierarchy. The "real" implementations are inside the
7 * protocol.
8 * <p>
9 * When a protocol reports this event, it indicates that this state can be
10 * logged to the loggers for output to the users (publication on the webpages
11 * and reporting to parent protocols eg a tournamentrunner). Usually protocols
12 * are updating this only after a session completes. There may be quite some
13 * overhead triggered by emission of these events, such as rewriting files and
14 * notifying end users behind websockets. Protocols MUST report this at least
15 * once to report the final isFinished() state.
16 * <p>
17 * The logged state may be used to re-start a protocol if it crashes later in an
18 * unfinished state.
19 *
20 */
21public abstract class CurrentState extends ProtocolEvent {
22 public CurrentState() {
23 }
24
25 public CurrentState(Long now) {
26 super(now);
27 }
28}
Note: See TracBrowser for help on using the repository browser.