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

    Type Alias ConsumerNotFound

    Notification that the consumer was not found. Consumers that were accessible at least once, will be retried for more messages regardless of the not being found or timeouts etc. This notification includes a count of consecutive attempts to find the consumer. Note that if you get this notification possibly your code should attempt to recreate the consumer. Note that this notification is only informational for ordered consumers, as the consumer will be created in those cases automatically.

    type ConsumerNotFound = {
        count: number;
        name: string;
        stream: string;
        type: "consumer_not_found";
    }
    Index

    Properties

    Properties

    count: number
    name: string
    stream: string
    type: "consumer_not_found"