Extract fetchDetailsForEvent and use coroutineDispatchers.io

This commit is contained in:
ganfra 2023-06-12 20:23:58 +02:00
parent 2b0b7e3e4b
commit 26746f5e27
6 changed files with 26 additions and 21 deletions

View file

@ -42,4 +42,6 @@ interface MatrixTimeline {
suspend fun editMessage(originalEventId: EventId, message: String): Result<Unit>
suspend fun replyMessage(inReplyToEventId: EventId, message: String): Result<Unit>
suspend fun fetchDetailsForEvent(eventId: EventId): Result<Unit>
}