1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2966 Chats | Tech | ChatPreviewContainer (#2446)

This commit is contained in:
Evgenii Kozlov 2025-05-23 16:18:59 +02:00 committed by GitHub
parent bd9ccaff50
commit 4783b8e79e
Signed by: github
GPG key ID: B5690EEEBB952194
7 changed files with 272 additions and 7 deletions

View file

@ -7,6 +7,7 @@ import kotlinx.coroutines.flow.Flow
interface ChatEventRemoteChannel {
fun observe(chat: Id): Flow<List<Event.Command.Chats>>
fun subscribe(subscription: Id): Flow<List<Event.Command.Chats>>
class Default(
private val channel: ChatEventRemoteChannel
) : ChatEventChannel {