【发布时间】:2016-12-31 04:39:29
【问题描述】:
我正在尝试使用 ZeroMQ 在 VS 中实现 ROUTER / ROUTER 模式,但我似乎无法让事情正常工作。据我所知,我知道服务器工作正常,因为我尝试使用其他类型的客户端套接字没有任何问题。但是在将其设为ROUTER 时,它不起作用。
有人知道如何修复客户端吗?
我的代码如下:
static string ip = "127.0.0.1";
static string port = "5555";
static string endpoint = string.Format("tcp://{0}:{1}", ip, port);
static void Main(string[] args)
{
Task.Factory.StartNew(StartRouterServer,TaskCreationOptions.LongRunning);
Task.Factory.StartNew(() => StartRouterClient(0), TaskCreationOptions.LongRunning);
Thread.Sleep(10000000);
}
static void StartRouterClient(int i)
{
using (ZContext context = new ZContext())
using (ZSocket router = new ZSocket(context, ZSocketType.ROUTER))
{
router.IdentityString = "client: " + i;
router.Connect(endpoint);
//send message
router.SendMore(new ZFrame(router.IdentityString));
router.SendMore(new ZFrame());
router.Send(new ZFrame("Hi"));
using (ZMessage received = router.ReceiveMessage())
{//on receiving a reply from the server, you come here.
Console.WriteLine("Received a message back from the server!!");
}
}
}
static void StartRouterServer()
{
using (ZContext context = new ZContext())
using (ZSocket router = new ZSocket(context, ZSocketType.ROUTER))
{
router.IdentityString = "router";
router.Bind(endpoint);
Console.WriteLine("The server is bound to {0}", router.LastEndpoint);
while (true)
{
using (ZMessage received = router.ReceiveMessage())
{//what you do when you receive the message.
Console.WriteLine("received a message!");
router.SendMore(received[0]);
router.SendMore(new ZFrame());
router.Send(new ZFrame("Hi back!!"));
}
}
}
}
【问题讨论】: