-
Notifications
You must be signed in to change notification settings - Fork 289
A matrix_sdk_base::Room needs a method to get the timeline (RoomEvents) #143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
There is |
I'm talking about a high-level API to retrieve room events in the same fashion as we do for room members. Obviously #138 needs to be completed first, so that the store actually contains room events ;). |
I see, I didn't realize you made your suggestion under the assumption of a/the message store being available |
I opened a new issue for this since this method should be added to the |
Currently the user needs to track the RoomEvents themself on every sync, because the sdk doesn't store them (see #138).
It would be nice that a user can retrieve the events directly from the sdk.
I would suggest adding a method to
Room
that returns the timeline. The method takes an startEventId
and an optional endEventId
or a limit that specifics how many events the user wants.I created to track the high-level issue separate form #138, which concerns the store itself.
The text was updated successfully, but these errors were encountered: