diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-08-31 12:21:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-31 12:21:56 +0100 |
commit | 175f65407a7f684753334022e66b8209f3db7396 (patch) | |
tree | caebde61a179b12e8ddc161359cbb8d9682aab96 /federationapi/consumers/roomserver.go | |
parent | ba0b3adab4de7865afd467b61638437b1af39fce (diff) |
Allow batching in `JetStreamConsumer` (#2686)
This allows us to receive more than one message from NATS at a time if we want.
Diffstat (limited to 'federationapi/consumers/roomserver.go')
-rw-r--r-- | federationapi/consumers/roomserver.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/federationapi/consumers/roomserver.go b/federationapi/consumers/roomserver.go index 2622ecb3..349b50b0 100644 --- a/federationapi/consumers/roomserver.go +++ b/federationapi/consumers/roomserver.go @@ -68,8 +68,8 @@ func NewOutputRoomEventConsumer( // Start consuming from room servers func (s *OutputRoomEventConsumer) Start() error { return jetstream.JetStreamConsumer( - s.ctx, s.jetstream, s.topic, s.durable, s.onMessage, - nats.DeliverAll(), nats.ManualAck(), + s.ctx, s.jetstream, s.topic, s.durable, 1, + s.onMessage, nats.DeliverAll(), nats.ManualAck(), ) } @@ -77,7 +77,8 @@ func (s *OutputRoomEventConsumer) Start() error { // It is unsafe to call this with messages for the same room in multiple gorountines // because updates it will likely fail with a types.EventIDMismatchError when it // realises that it cannot update the room state using the deltas. -func (s *OutputRoomEventConsumer) onMessage(ctx context.Context, msg *nats.Msg) bool { +func (s *OutputRoomEventConsumer) onMessage(ctx context.Context, msgs []*nats.Msg) bool { + msg := msgs[0] // Guaranteed to exist if onMessage is called // Parse out the event JSON var output api.OutputEvent if err := json.Unmarshal(msg.Data, &output); err != nil { |