C# Class ServerNetworkConnections.ClientConnection.MessageWriter

Inner class used to handle the message writing into the given TCPConnection. It will basically at all times try to read from it's attached buffer, and write the message.
显示文件 Open project: bakacaptain/istalkapp

Public Methods

Method Description
Go ( ) : void

Endlessly repeating loop.

MessageWriter ( ClientConnection inner, TCPConnection connection ) : System

Constructor for MessageWriter.

Method Details

Go() public method

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

MessageWriter() public method

Constructor for MessageWriter.
public MessageWriter ( 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