tor-android/src/org/torproject/android/service/ITorServiceCallback.aidl

14 lines
380 B
Plaintext

package org.torproject.android.service;
/**
* Callback interface used 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 ITorServiceCallback {
/**
* Called when the service has a new value for you.
*/
void statusChanged(String value);
}