我有一台服务器需要获取指令以在另一台机器上为客户端运行进程。
客户端发送作业消息,服务器处理作业,然后发送回结果。
我尝试使用 NetMQ 请求响应模式(见下文)
这适用于 1 个客户端,但如果第二个客户端在前一个客户端作业完成之前发送请求 - 我收到错误消息。
我真的需要能够接收来自客户的临时消息,并在完成后发送结果。显然,我使用了错误的模式,但阅读 ZeroMQ 文档并没有突出显示更合适的模式。
namespace Utils.ServerMQ
{
class ServerMQ
{
public static void Go()
{
using (var responseSocket = new ResponseSocket("@tcp://*:393"))
{
while (true)
{
Console.WriteLine("Server waiting");
var message = responseSocket.ReceiveFrameString();
Console.WriteLine("Server Received '{0}'", message);
//System.Threading.Thread.Sleep(1000);
var t2 = Task.Factory.StartNew(() =>
{
RunProcMatrix(message, responseSocket);
});
}
}
}
public static void RunProcMatrix(object state, ResponseSocket responseSocket)
{
var process = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = Path.Combine(@"H:\Projects\Matrix\Matrix\bin\Debug\", "Matrix001.exe"),
Arguments = (string)state,
WindowStyle = ProcessWindowStyle.Normal,
CreateNoWindow = false
}
};
process.Start();
process.WaitForExit();
responseSocket.SendFrame((string)state);
}
}
}