Interface IServer
The common server interface. Provides ability to start and stop operation and listen the incoming connections.
Namespace: FixAntenna.FixEngine.Transport.Server
Assembly: FixAntenna.Core.dll
Syntax
public interface IServer
Methods
SetIncomingConnectionListener(IConnectionListener)
Sets the connection listener.
Declaration
void SetIncomingConnectionListener(IConnectionListener value)
Parameters
Type | Name | Description |
---|---|---|
IConnectionListener | value | the connection listener |
Start()
Start the server.
Declaration
void Start()
Exceptions
Type | Condition |
---|---|
System.IO.IOException |
|
Stop()
Stop server.
Declaration
void Stop()
Exceptions
Type | Condition |
---|---|
System.IO.IOException |
|