Send messages in batch without exceeding a limit

Service Bus allows user to send messages in batches, which is great what it comes to performance. Differences sending messages in batches and separately can be huge. Actually, lets look at an example. This is a very simple send: private static void SimpleSendBatch() { var client = GetQueueClient(); client.SendBatch(GetALotOfMessages()); } If we compare it to… Continue reading Send messages in batch without exceeding a limit