mirror of
https://github.com/oxen-io/session-android.git
synced 2025-01-11 21:13:38 +00:00
13 lines
256 B
Java
13 lines
256 B
Java
|
package org.thoughtcrime.securesms.jobmanager;
|
||
|
|
||
|
import android.support.annotation.NonNull;
|
||
|
|
||
|
public interface ConstraintObserver {
|
||
|
|
||
|
void register(@NonNull Notifier notifier);
|
||
|
|
||
|
interface Notifier {
|
||
|
void onConstraintMet(@NonNull String reason);
|
||
|
}
|
||
|
}
|