Move to prev/next unseen message
This commit is contained in:
parent
05ce069121
commit
bfc221106d
5 changed files with 225 additions and 0 deletions
|
|
@ -123,6 +123,22 @@ impl MsgStore<LogMsg> for Logger {
|
|||
self.next_tree_id(id).await
|
||||
}
|
||||
|
||||
async fn oldest_unseen_msg_id(&self) -> Option<usize> {
|
||||
None
|
||||
}
|
||||
|
||||
async fn newest_unseen_msg_id(&self) -> Option<usize> {
|
||||
None
|
||||
}
|
||||
|
||||
async fn older_unseen_msg_id(&self, _id: &usize) -> Option<usize> {
|
||||
None
|
||||
}
|
||||
|
||||
async fn newer_unseen_msg_id(&self, _id: &usize) -> Option<usize> {
|
||||
None
|
||||
}
|
||||
|
||||
async fn set_seen(&self, _id: &usize, _seen: bool) {}
|
||||
|
||||
async fn set_older_seen(&self, _id: &usize, _seen: bool) {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue