<div dir="ltr">Hi all!<br><br>I have a tool which sends a lot of messages to RabbitMQ. Those messages have a "timestep". The timestep is increased by 1 when the tool is doing its calculations again. For each timestep I get a few hundred result messages. I want to make sure, that if I exit the program ALL the messages of the last timestep calculated have been sent. It would be bad if results of the last timestep would be missing from the queue. How can I accomplish that? My first idea was bulk sending, but RabbitMQ doesn't seem to support this. Is there a way I can use transactions? Like opening the transaction, sending all the messages, then commiting the transaction?<br></div>