/// <summary> /// Indicate that the given pipe is now ready for reading. /// Pipe calls this on it's sink in response to ProcessActivateRead. /// </summary> /// <param name="pipe">the pipe to indicate is ready for reading</param> 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(); } }