49224335fc
when receiving a FCM push message for a channel the user is no longer in (this can happen when the disable command failed) an attempt will be made to explicitly unregister from the app server (which in turn will then send item-not-found on next push)
12 lines
224 B
Java
12 lines
224 B
Java
package eu.siacs.conversations.ui;
|
|
|
|
import android.app.PendingIntent;
|
|
|
|
public interface UiCallback<T> {
|
|
void success(T object);
|
|
|
|
void error(int errorCode, T object);
|
|
|
|
void userInputRequired(PendingIntent pi, T object);
|
|
}
|