Progress

sealed interface Progress(source)

Is work currently happening?

Values of this type can be in two different states:

For ease of use, the factory functions done and loading are provided.

Implementation notes

All implementations of Progress must be deeply immutable. To communicate the advancement of progress over time, report multiple progress objects.

Inheritors

Types

Link copied to clipboard
object Companion
Link copied to clipboard
data object Done : Progress

No work is currently happening.

Link copied to clipboard
sealed interface Loading : Progress

Work is currently happening.