Success

data class Success<out T>(val result: T) : LockResult<T>

Represents a successful lock operation.

Parameters

T

The type of the result.

Constructors

Link copied to clipboard
constructor(result: T)

Properties

Link copied to clipboard
val result: T

The result of the successful lock operation.