Home > Software design >  How to schedule cron sending message to ActiveMQ broker using Golang?
How to schedule cron sending message to ActiveMQ broker using Golang?

Time:03-28

I am using Golang. I want to send message (scheduled with cron) to ActiveMQ Broker like this document (AMQ_SCHEDULED_CRON)

When looking up this document. I did not find anything mentioning about schedule sending cron message.

CodePudding user response:

If you want a message to be scheduled just send it with the appropriate property. If you're using STOMP message properties are set as headers on the MESSAGE frame.

  • Related