commonMain.com.github.insanusmokrassar.TelegramBotAPI.extensions.utils.updates.SentMessageUpdatesConversations.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of TelegramBotAPI-extensions-utils-metadata Show documentation
Show all versions of TelegramBotAPI-extensions-utils-metadata Show documentation
Util extensions for more useful work with updates and other things
package com.github.insanusmokrassar.TelegramBotAPI.extensions.utils.updates
import com.github.insanusmokrassar.TelegramBotAPI.types.message.abstracts.*
import com.github.insanusmokrassar.TelegramBotAPI.types.update.abstracts.BaseSentMessageUpdate
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.mapNotNull
fun Flow.asContentMessagesFlow() = mapNotNull {
it.data as? ContentMessage<*>
}
fun Flow.asChatEventsFlow() = mapNotNull {
it.data as? ChatEventMessage
}
fun Flow.asUnknownMessagesFlow() = mapNotNull {
it.data as? UnknownMessageType
}