Files
briar/briar-android/src/org/briarproject/android/api/AndroidNotificationManager.java
Torsten Grote 04af39f567 Show notifications for new blog posts
This also adds a setting allowing people to turn blog post notifications off.

Closes #488
2016-08-01 13:21:12 +01:00

28 lines
611 B
Java

package org.briarproject.android.api;
import org.briarproject.api.sync.GroupId;
/** Manages notifications for private messages and forum posts. */
public interface AndroidNotificationManager {
void showPrivateMessageNotification(GroupId g);
void clearPrivateMessageNotification(GroupId g);
void showForumPostNotification(GroupId g);
void clearForumPostNotification(GroupId g);
void showBlogPostNotification(GroupId g);
void clearBlogPostNotification();
void blockNotification(GroupId g);
void unblockNotification(GroupId g);
void blockBlogNotification();
void unblockBlogNotification();
}