- Listenerclass Listener 
- Class that actually performs listening on a certain address family 
- createConnectionSocketConnection createConnection(Socket socket) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- listeningbool listening; 
- Whether the socket is listening. 
- listenersListener[] listeners; 
- updateFlagsvoid updateFlags() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- listenvoid listen(AddressInfo[] addressInfos) 
- Start listening on this socket. 
- localAddressesAddress[] localAddresses [@property getter] 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- isListeningbool isListening [@property getter] 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- closevoid close() 
- Stop listening on this socket. 
- fromStdinSocketServer fromStdin() 
- Create a SocketServer using the handle passed on standard input,
 for which listen had already been called. Used by
 e.g. FastCGI and systemd sockets with "Listen = yes". 
- handleClosevoid delegate() handleClose; 
- Callback for when the socket was closed. 
- handleAcceptvoid delegate(SocketConnection incoming) handleAccept [@property getter] 
- void delegate(SocketConnection incoming) handleAccept [@property setter] 
- Callback for an incoming connection.
 Connections will not be accepted unless this handler is set. 
An asynchronous TCP connection server.