Supplier

typealias Supplier<Result> = suspend () -> Result(source)

Represents a potentially suspendable operation that accepts no arguments and produces a result. Based on Java's Supplier functional interface.

Parameters

Result

the type of the result