InvalidationResult

@Immutable
sealed class InvalidationResult

Defines the result of the invalidation requested for the Composable.

Inheritors

Types

Link copied to clipboard

A argument in the Composable has been changed. The changed arguments are print sorted by argument name.

Link copied to clipboard

The first composition (not recomposition). This happens by default.

Link copied to clipboard

The current recompose scope has been requested to be recomposed. This can be caused by a call to currentRecomposeScope.invalidate() or when a field within that Composable has been changed.

Link copied to clipboard

Recomposition was skipped because there were no changes to the Composable.