Type Alias StreamNotFound

StreamNotFound: {
    consumerCreateFails?: number;
    name: string;
    type: "stream_not_found";
}

Notification that the stream was not found. Consumers 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 declaration

  • OptionalconsumerCreateFails?: number
  • name: string
  • type: "stream_not_found"