Skip to content

Commit

Permalink
Add update consumer to simplification ADR
Browse files Browse the repository at this point in the history
Signed-off-by: Tomasz Pietrek <[email protected]>
  • Loading branch information
Jarema committed Apr 3, 2024
1 parent 8911fc8 commit d86e229
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions adr/ADR-37.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ Example set of methods on JetStreamContext:
- `deleteStream(streamName)`
- `listStreams()`
- Consumer operations:
- `addConsumer(streamName, consumerConfig)`
- `createConsumer(streamName, consumerConfig)`
- `createOrUpdateConsumer(streamName, consumerConfig)`
- `updateConsumer(streamName, consumerConfig)`
- `getConsumer(streamName, consumerName)`
- `deleteConsumer(streamName, consumerName)`
- `accountInfo()`
Expand All @@ -61,8 +63,10 @@ messages. Streams also allow for and managing consumers.
Example set of methods on Stream:

- operations on consumers:
- `addConsumer(consumerConfig)`
- `createConsumer(consumerConfig)`
- `createOrUpdateConsumer(consumerConfig)`
- `getConsumer(consumerName)`
- `updateConsumer(consumerConfig)`
- `deleteConsumer(consumerName)`
- operations a stream:
- `purge(purgeOpts)`
Expand Down

0 comments on commit d86e229

Please sign in to comment.