Beispiel #1
0
 /// <summary>
 /// Indicate the given pipe as being ready for writing to by this socket.
 /// This gets called by the WriteActivated method
 /// and gets overridden by the different sockets
 /// to provide their own concrete implementation.
 /// </summary>
 /// <param name="pipe">the <c>Pipe</c> that is now becoming available for writing</param>
 protected override void XWriteActivated(Pipe pipe)
 {
     m_loadBalancer.Activated(pipe);
 }