QueryResult

interface QueryResult<T>

Types

Link copied to clipboard
class AsyncValue<T>(getter: suspend () -> T) : QueryResult<T>
Link copied to clipboard
object Unit : QueryResult<Unit>

A QueryResult representation of a Kotlin Unit.

Link copied to clipboard
data class Value<T>(val value: T) : QueryResult<T>

Functions

Link copied to clipboard
abstract suspend fun await(): T

Properties

Link copied to clipboard
open val value: T

Inheritors

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