EventHandlingResult

sealed class EventHandlingResult

Represent possible outcomes of handling a chat event.

Inheritors

Types

Link copied to clipboard
data class Add(val channel: Channel) : EventHandlingResult

Add a channel to a query channels collection.

Link copied to clipboard
data class Remove(val cid: String) : EventHandlingResult

Remove a channel from a query channels collection.

Link copied to clipboard

Skip the event.

Link copied to clipboard
data class WatchAndAdd(val cid: String) : EventHandlingResult

Call watch and add the channel to a query channels collection.