DispatchResult

sealed class DispatchResult(source)

Result of a dispatch operation, indicating whether the action was processed.

Inheritors

Types

Link copied to clipboard
data object Blocked : DispatchResult

Action was blocked by middleware (e.g., spam protection)

Link copied to clipboard
data class Error(val cause: Throwable) : DispatchResult

Action processing failed with an error

Link copied to clipboard

Action was processed and applied to state