SendbirdEventState

sealed class SendbirdEventState<out T>

Represents the state of an event.

Since

1.0.0-beta.1

Inheritors

Constructors

Link copied to clipboard
protected constructor()

Types

Link copied to clipboard

Represents the failure state with the exception.

Link copied to clipboard

Represents the idle state.

Link copied to clipboard

Represents the loading state.

Link copied to clipboard

Represents the success state. This is used with SimpleSendbirdEventState when the result is not needed.

Link copied to clipboard
class SuccessResult<out T>(val result: T) : SendbirdEventState<T>

Represents the success state with the result.