Number of messages added to the batch.
The maximum size of the batch, in bytes. The tryAdd
function on the batch will return false
if the message being added causes the size of the batch to exceed this limit. Use the createBatch()
method on
the Sender
to set the maxSizeInBytes.
Size 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.
An individual service bus message.
A 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.