aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/de/blinkt/openvpn/api/IOpenVPNStatusCallback.aidl
blob: 1dfa1381d67c589bdd5956f795bc864c900504db (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 uuid, String state, String message, String level);
}