代码之家  ›  专栏  ›  技术社区  ›  chillitom Cee McSharpface

向父进程发送子进程已完全初始化的信号

  •  6
  • chillitom Cee McSharpface  · 技术社区  · 14 年前

    我正在启动一个公开WCF终结点的子进程。如何从子进程向父进程发出信号,表明子进程已完全初始化,现在可以访问终结点?

    我曾考虑过使用信号量来实现这个目的,但还不太清楚如何实现所需的信号。

            string pipeUri = "net.pipe://localhost/Node0";
            ProcessStartInfo startInfo = new ProcessStartInfo("Node.exe", "-uri=" + pipeUri);
            Process p = Process.Start(startInfo);
            NetNamedPipeBinding binding = new NetNamedPipeBinding();
            var channelFactory = new ChannelFactory<INodeController>(binding);
            INodeController controller = channelFactory.CreateChannel(new EndpointAddress(pipeUri));
    
            // need some form of signal here to avoid..
            controller.Ping() // EndpointNotFoundException!!
    
    1 回复  |  直到 14 年前
        1
  •  4
  •   Jeff Yates    14 年前

    我会用全系统的 EventWaitHandle 为了这个。然后,父应用程序可以等待子进程发出该事件的信号。

    两个进程都创建命名事件,然后一个进程等待它被通知。

    // I'd probably use a GUID for the system-wide name to
    // ensure uniqueness. Just make sure both the parent
    // and child process know the GUID.
    var handle = new EventWaitHandle(
        false,
        EventResetMode.AutoReset,
        "MySystemWideUniqueName");
    

    而子进程将通过调用 handle.Set() ,父进程使用 WaitOne 方法。