如何在.Net中通过ZeroMQ发送taged消息?

时间:2013-03-02 20:04:58

标签: c# .net zeromq

因此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”上发送“消息”字符串?

1 个答案:

答案 0 :(得分:0)

在ZeroMQ中,消息的主题只是消息的开头。在您的发布商中,尝试发送前缀为A.message的邮件。