C# Class QuickFix.ClientHandlerThread

Created by a ThreadedSocketReactor to handle a client connection. Each ClientHandlerThread has a SocketReader which reads from the socket.
Inheritance: IResponder, IDisposable
ファイルを表示 Open project: kennystone/quickfixn Class Usage Examples

Public Methods

Method Description
ClientHandlerThread ( TcpClient tcpClient, long clientId ) : System.Net.Sockets
Disconnect ( ) : void
Join ( ) : void
Log ( string s ) : void
Run ( ) : void
Send ( string data ) : bool
Shutdown ( string reason ) : void
Start ( ) : void

Method Details

ClientHandlerThread() public method

public ClientHandlerThread ( TcpClient tcpClient, long clientId ) : System.Net.Sockets
tcpClient System.Net.Sockets.TcpClient
clientId long
return System.Net.Sockets

Disconnect() public method

public Disconnect ( ) : void
return void

Join() public method

public Join ( ) : void
return void

Log() public method

public Log ( string s ) : void
s string
return void

Run() public method

public Run ( ) : void
return void

Send() public method

public Send ( string data ) : bool
data string
return bool

Shutdown() public method

public Shutdown ( string reason ) : void
reason string
return void

Start() public method

public Start ( ) : void
return void