SnapshotApplyResult


The result of a applying a mutable snapshot. Success indicates that the snapshot was successfully applied and is now visible as the global state of the state object (or visible in the parent snapshot for a nested snapshot). Failure indicates one or more state objects were modified by both this snapshot and in the global (or parent) snapshot, and the changes from this snapshot are not visible in the global or parent snapshot.

Summary

Protected constructors

Cmn

Public functions

abstract Unit

Check the result of an apply.

Cmn

Public properties

abstract Boolean

True if the result is Success.

Cmn

Protected constructors

SnapshotApplyResult

protected SnapshotApplyResult()

Public functions

check

abstract fun check(): Unit

Check the result of an apply. If the result is Success then this does does nothing. If the result is Failure then a SnapshotApplyConflictException exception is thrown. Once check as been called the snapshot is disposed.

Public properties

succeeded

abstract val succeededBoolean

True if the result is Success.