2019-03-28 08:56:35 -07:00
|
|
|
package org.thoughtcrime.securesms.jobmanager;
|
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
import androidx.annotation.NonNull;
|
2019-03-28 08:56:35 -07:00
|
|
|
|
|
|
|
public interface ConstraintObserver {
|
|
|
|
|
|
|
|
void register(@NonNull Notifier notifier);
|
|
|
|
|
|
|
|
interface Notifier {
|
|
|
|
void onConstraintMet(@NonNull String reason);
|
|
|
|
}
|
|
|
|
}
|