Interface UntilMethod<T>

An object that can be waited on with yield *until(), by calling its "uneventful.until" method. (This mostly exists to allow Signals to optimize their until() implementation, but is also open for extensions.)

interface UntilMethod<T> {
    uneventful.until(): Yielding<T>;
}

Type Parameters

  • T

Hierarchy (view full)

Methods