コード例 #1
0
ファイル: SessionBase.cs プロジェクト: zredb/netmq
        public void WriteActivated(Pipe pipe)
        {
            // Skip activating if we're detaching this pipe
            if (m_pipe != pipe)
            {
                Debug.Assert(m_terminatingPipes.Contains(pipe));
                return;
            }

            m_engine?.ActivateIn();
        }