@nats-io/jetstream
    Preparing search index...

    Type Alias StreamConsumerSource

    Identifies a pre-created durable consumer used for stream sourcing/mirroring. The referenced consumer must exist before the stream is created and must use ack_policy: "flow_control" — any other policy (none, explicit, all) is rejected by the server. See ADR-60.

    type StreamConsumerSource = {
        deliver_subject: string;
        name: string;
    }
    Index

    Properties

    deliver_subject: string

    Subject the server delivers messages to. Must match the deliver_subject of the pre-created consumer.

    name: string

    Name of the pre-created consumer to use.