Interface NextMethod<T>

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

interface NextMethod<T> {
    uneventful.next(): Yielding<T>;
}

Type Parameters

  • T

Methods