State

sealed class State

State of the lock.

Types

Link copied to clipboard
class Failed(val throwable: Throwable) : InterfaceLock.State

Lock has failed during work execution and provides the throwable.

Link copied to clipboard
object Idle : InterfaceLock.State

Lock is currently not executing work.

Link copied to clipboard
object Running : InterfaceLock.State

Lock is currently executing work.

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard