Package version:
Readonly
countNumber of messages added to the batch.
Readonly
maxThe maximum size of the batch, in bytes. The tryAddMessage
function on the batch will return false
if the message being added causes the size of the batch to exceed this limit. Use the createMessageBatch()
method on
the Sender
to set the maxSizeInBytes.
Readonly
sizeSize of the batch in bytes after the events added to it have been encoded into a single AMQP message.
Adds a message to the batch if permitted by the batch's size limit. NOTE: Always remember to check the return value of this method, before calling it again for the next event.
The message to add to the batch.
Optional
options: TryAddOptionsA boolean value indicating if the message has been added to the batch or not.
Generated using TypeDoc
A batch of messages that you can create using the createBatch method.