blob: 11e369c2fdf35f80e9196b8a3ae3d8badcb08269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package de.blinkt.openvpn.api;
/**
* Example of a callback interface used by IRemoteService to send
* synchronous notifications back to its clients. Note that this is a
* one-way interface so the server does not block waiting for the client.
*/
oneway interface IOpenVPNStatusCallback {
/**
* Called when the service has a new status for you.
*/
void newStatus(String state, String message);
}
|