Wraps a remote endpoint which connected IReactor instance inside a IConnection object
Inheritance: IConnection
 protected override void ReceivedData(NetworkData availableData, ReactorResponseChannel responseChannel)
 {
     if (EventLoop.Receive != null)
     {
         EventLoop.Receive(availableData, responseChannel);
     }
 }
Example #2
0
 protected override void ReceivedData(NetworkData availableData, ReactorResponseChannel responseChannel)
 {
     responseChannel.OnReceive(availableData);
 }