source: src/main/java/genius/core/NegotiationEventListener.java@ 209

Last change on this file since 209 was 1, checked in by Wouter Pasman, 6 years ago

Initial import : Genius 9.0.0

File size: 547 bytes
Line 
1package genius.core;
2
3import genius.core.events.ActionEvent;
4
5/**
6 * implement this class in order to subscribe with the NegotiationManager to get
7 * callback on handleEvent().
8 *
9 */
10public interface NegotiationEventListener {
11 /**
12 * IMPORTANT: in handleEvent, do not more than just storing the event and
13 * notifying your interface that a new event has arrived. Doing more than
14 * this will snoop time from the negotiation, which will disturb the
15 * negotiation.
16 *
17 * @param evt
18 */
19 public void handleActionEvent(ActionEvent evt);
20
21}
Note: See TracBrowser for help on using the repository browser.