NetMQ.Core.SessionBase.ReadActivated C# (CSharp) Method

ReadActivated() public method

Indicate that the given pipe is now ready for reading. Pipe calls this on it's sink in response to ProcessActivateRead.
public ReadActivated ( NetMQ.Core.Pipe pipe ) : void
pipe NetMQ.Core.Pipe the pipe to indicate is ready for reading
return void
        public void ReadActivated(Pipe pipe)
        {
            // Skip activating if we're detaching this pipe
            if (m_pipe != pipe)
            {
                Debug.Assert(m_terminatingPipes.Contains(pipe));
                return;
            }

            if (m_engine != null)
                m_engine.ActivateOut();
            else
                m_pipe.CheckRead();
        }