英文:
How to schedule cron sending message to ActiveMQ broker using Golang?
问题
我正在使用Golang。我想要像这个文档(AMQ_SCHEDULED_CRON
)所示,使用cron调度发送消息到ActiveMQ Broker。
在查看这个文档时,我没有找到任何关于调度发送cron消息的内容。
英文:
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.
答案1
得分: 1
如果您想要安排一条消息,请使用相应的属性发送它。如果您正在使用STOMP协议,消息属性将作为标头设置在MESSAGE
帧上。
英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论