summaryrefslogtreecommitdiff
path: root/app/src/main/aidl/de/blinkt/openvpn/api/IOpenVPNStatusCallback.aidl
blob: a94b3b44f9576032d855cfd8893f1efdc2df4df9 (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.
 */
interface IOpenVPNStatusCallback {
    /**
     * Called when the service has a new status for you.
     */
    oneway void newStatus(in String uuid, in String state, in String message, in String level);
}