aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/testbed/callbacks/ControllerEventCallback.java
blob: 573c38a37b00c8fa1d3f5d61f8d10df925e342c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.gnunet.testbed.callbacks;



public abstract class ControllerEventCallback {
    void onPeerStart() {
        throw new AssertionError("event not handled");
    }
    void onPeerStop() {
        throw new AssertionError("event not handled");
    }
    void onPeerConnect() {
        throw new AssertionError("event not handled");
    }
    void onPeerDisconnect() {
        throw new AssertionError("event not handled");
    }
    void onOperationFinished() {
        throw new AssertionError("event not handled");
    }
}