contributte / rabbitmq

🐰 RabbitMQ (AMQP, STOMP, MQTT) using BunnyPHP for Nette Framework (@nette).
https://contributte.org/packages/contributte/rabbitmq.html
MIT License
24 stars 25 forks source link

Support for heartbeat in Producer #46

Closed bckp closed 3 years ago

bckp commented 3 years ago

Bunny does not support producers from CLI well (producers that run long time, but send message only once a long period). So producers often drop connection in middle, but bunny have no idea about it (stream is closed) and if you try write data, it will end badly.

This commit add new option, so you can send heartbeat to the connection, and if needed, it will publish them to the rabbit, so connection will not close and we will all live happy life.

Drawback: you must call heartbeat by yourself, app cant do it for you

paveljanda commented 3 years ago

Nice! Thanks a lot!