Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
interface Consumers
import { type Consumers } from "https://deno.land/x/natsws@v1.28.0/src/mod.ts";

Methods

get(stream: string, name?: string | Partial<OrderedConsumerOptions>): Promise<Consumer>

Returns the Consumer configured for the specified stream having the specified name. Consumers are typically created with JetStreamManager. If no name is specified, the Consumers API will return an ordered consumer.

An ordered consumer expects messages to be delivered in order. If there's any inconsistency, the ordered consumer will recreate the underlying consumer at the correct sequence. Note that ordered consumers don't yield messages that can be acked because the client can simply recreate the consumer.

Consumer.