如何使用Golang编写定时任务来向ActiveMQ代理发送消息?

huangapple go评论73阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2022年3月25日 12:57:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/71612337.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定