mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Introduce client layer events for forums
The forum UI depended on sync layer events such as MessageStateChangedEvent. Now, the forum client broadcasts its own high-level event (`ForumPostReceivedEvent`) with the information the UI needs (`ForumPostHeader`). Closes #310
This commit is contained in:
@@ -8,9 +8,10 @@ import java.util.Comparator;
|
||||
public interface MessageTree<T extends MessageTree.MessageNode> {
|
||||
|
||||
void add(Collection<T> nodes);
|
||||
void add(T node);
|
||||
void setComparator(Comparator<T> comparator);
|
||||
void clear();
|
||||
Collection<T> depthFirstOrder();
|
||||
void setComparator(Comparator<T> comparator);
|
||||
|
||||
interface MessageNode {
|
||||
MessageId getId();
|
||||
|
||||
Reference in New Issue
Block a user