shajara API
    Preparing search index...

    Interface Feed<Value, Outcome>

    Producer controls paired with a channel receiver.

    interface Feed<Value, Outcome> {
        receiver: ChannelReceiver<Value, Outcome>;
        close(outcome: Outcome): void;
        trySend(value: Value): boolean;
    }

    Type Parameters

    • Value
    • Outcome
    Index

    Properties

    Methods

    Properties

    Receiver consumed by channel primitives.

    Methods