示例#1
0
文件: Stream.cs 项目: wbj808178/netmq
        protected override void XTerminated(Pipe pipe)
        {
            Outpipe old;

            m_outpipes.TryGetValue(pipe.Identity, out old);
            m_outpipes.Remove(pipe.Identity);

            Debug.Assert(old != null);

            m_fq.Terminated(pipe);
            if (pipe == m_currentOut)
            {
                m_currentOut = null;
            }
        }
示例#2
0
 protected void XTerminated(Pipe pipe)
 {
     m_fq.Terminated(pipe);
 }
示例#3
0
 protected override void XTerminated(Pipe pipe)
 {
     m_fq.Terminated(pipe);
     m_lb.Terminated(pipe);
 }