ErrorEvent

sealed class ErrorEvent

A class designed for error event propagation.

Parameters

streamError

Contains the original Throwable along with a message.

Inheritors

Types

Link copied to clipboard
data class BlockUserError(val streamError: Error) : MessageListController.ErrorEvent

When an error occurs while blocking a user.

Link copied to clipboard
data class FlagMessageError(val streamError: Error) : MessageListController.ErrorEvent

When an error occurs while flagging a message.

Link copied to clipboard
data class MarkUnreadError(val streamError: Error) : MessageListController.ErrorEvent

When an error occurs while marking a message as read.

Link copied to clipboard
data class MuteUserError(val streamError: Error) : MessageListController.ErrorEvent

When an error occurs while muting a user.

Link copied to clipboard
data class PinMessageError(val streamError: Error) : MessageListController.ErrorEvent

When an error occurs while pinning a message.

Link copied to clipboard
data class UnmuteUserError(val streamError: Error) : MessageListController.ErrorEvent

When an error occurs while unmuting a user.

Link copied to clipboard
data class UnpinMessageError(val streamError: Error) : MessageListController.ErrorEvent

When an error occurs while unpinning a message.

Properties

Link copied to clipboard
open val streamError: Error