C# Class ServerNetworkConnections.ClientConnection.MessageReader

Inner class used to handle the message reading from the given TCPConnection. It will basically at all times try to read from it's the TCPConnection and call the appropriate delegates passwed in the constructor.
显示文件 Open project: bakacaptain/istalkapp

Public Methods

Method Description
Go ( ) : void

Endlessly repeating loop!

MessageReader ( ClientConnection inner, TCPConnection connection ) : System

Constructor for MessageReader.

Method Details

Go() public method

Endlessly repeating loop!
public Go ( ) : void
return void

MessageReader() public method

Constructor for MessageReader.
public MessageReader ( ClientConnection inner, TCPConnection connection ) : System
inner ClientConnection This is the ClientConnection that this class is inside.
connection TCPConnection This is the TCPConnection that the ClientConnection is connected to.
return System