01: package dalma;
02:
03: /**
04: * Receives various event notifications that happen in {@link Engine}.
05: *
06: * @author Kohsuke Kawaguchi
07: */
08: public abstract class EngineListener {
09: /**
10: * Invoked when a new {@link Conversation} is created.
11: */
12: public void onConversationStarted(Conversation conv) {
13: }
14:
15: /**
16: * Invoked when a {@link Conversation} is just completed.
17: */
18: public void onConversationCompleted(Conversation conv) {
19: }
20: }
|