query about batchsize #502
-
Summaryhey, ExampleNo response |
Beta Was this translation helpful? Give feedback.
Answered by
nicholasgriffintn
Jul 2, 2024
Replies: 1 comment 5 replies
-
The main difference between the two is that handleMessage will receive individual messages, in parallel, whereas handleMessageBatch will receive the full messages array. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
handleMessage will only be sent each individual message and executed individually per message.
handleMessageBatch will be sent the full array and executed with that full array.