Start integrating uptodate rust sdk and make it compile (WIP)

This commit is contained in:
ganfra 2023-02-03 10:35:30 +01:00
parent 95b8cb6c03
commit f0db8b00ea
34 changed files with 739 additions and 352 deletions

View file

@ -29,14 +29,11 @@ class FakeMatrixTimeline : MatrixTimeline {
get() = null
set(value) {}
override val hasMoreToLoad: Boolean
get() = true
override fun timelineItems(): Flow<List<MatrixTimelineItem>> {
return emptyFlow()
}
override suspend fun paginateBackwards(count: Int): Result<Unit> {
override suspend fun paginateBackwards(requestSize: Int, untilNumberOfItems: Int): Result<Unit> {
return Result.success(Unit)
}