mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
13 lines
204 B
Java
13 lines
204 B
Java
package org.briarproject.android;
|
|
|
|
import android.support.annotation.UiThread;
|
|
|
|
public interface DestroyableActivity {
|
|
|
|
void runOnUiThread(Runnable runnable);
|
|
|
|
@UiThread
|
|
boolean hasBeenDestroyed();
|
|
|
|
}
|