mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
22 lines
563 B
Java
22 lines
563 B
Java
package org.briarproject.api.android;
|
|
|
|
import org.briarproject.api.ContactId;
|
|
import org.briarproject.api.messaging.GroupId;
|
|
|
|
/**
|
|
* Manages notifications for private messages and group posts. All methods must
|
|
* be called from the Android UI thread.
|
|
*/
|
|
public interface AndroidNotificationManager {
|
|
|
|
public void showPrivateMessageNotification(ContactId c);
|
|
|
|
public void clearPrivateMessageNotification(ContactId c);
|
|
|
|
public void showGroupPostNotification(GroupId g);
|
|
|
|
public void clearGroupPostNotification(GroupId g);
|
|
|
|
public void clearNotifications();
|
|
}
|