因此official wrapper我尝试创建一个能够基于主题的消息发布的简单发布者(类似publisher demonstrated here for python):
using (var context = ZmqContext.Create())
using (var pub = context.CreateSocket(SocketType.PUB))
{
pub.Bind(url);
while (true)
{
pub.Send( // How to send "Message" string on topic "A.message"?
}
}
那么如何在主题/标签“A.message
”上发送“消息”字符串?
答案 0 :(得分:0)
在ZeroMQ中,消息的主题只是消息的开头。在您的发布商中,尝试发送前缀为A.message
的邮件。