Listener
Overview
The Listener class is used internally by the Server component. For each port binding, one or more Listener instances are created. Each runs in a separate thread and listens for incoming connections. As soon as a connection is accepted, a Worker thread is created to handle this data connection, and then Listener thread goes back to listening for new connections.
Location
- Reference: RemObjects.SDK.Server.dll
- Namespace: RemObjects.SDK.Server
Properties
ListeningSocket
property ListeningSocket: Socket read write;
Socket ListeningSocket { get; set; }
Property ListeningSocket() As Socket
Owner
Instance Methods
constructor
Parameters:
- owner:
- workerFactory:
Listen
method Listen
void Listen()
Sub Listen()