- __anonymous
mixin SocketMixin
Declares notifyRead and notifyWrite.
- conn
Socket conn;
The socket this class wraps.
- socket
Socket socket [@property getter]
Retrieve the socket class this class wraps.
- onReadable
void onReadable()
Undocumented in source. Be warned that the author may not have intended to support it.
- onWritable
void onWritable()
Undocumented in source. Be warned that the author may not have intended to support it.
- onError
void onError(string reason)
Undocumented in source. Be warned that the author may not have intended to support it.
- address
Address address [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
- localAddress
alias localAddress = address!true
Undocumented in source.
- remoteAddress
alias remoteAddress = address!false
Undocumented in source.
- addressStr
string addressStr [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
- localAddressStr
alias localAddressStr = addressStr!true
Undocumented in source.
- remoteAddressStr
alias remoteAddressStr = addressStr!false
Undocumented in source.
- daemon
bool daemon;
Don't block the process from exiting.
TODO: Not implemented with libev
- setKeepAlive
void setKeepAlive(bool enabled, int time, int interval)
Undocumented in source. Be warned that the author may not have intended to support it.
- toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.
Class that actually performs listening on a certain address family