TimeoutAdapter

Fires an event handler or disconnects connections after a period of inactivity.

Constructors

this
this(IConnection next)
Undocumented in source.

Members

Functions

cancelIdleTimeout
void cancelIdleTimeout()
Undocumented in source. Be warned that the author may not have intended to support it.
markNonIdle
void markNonIdle()
Undocumented in source. Be warned that the author may not have intended to support it.
onConnect
void onConnect()
Undocumented in source. Be warned that the author may not have intended to support it.
onDisconnect
void onDisconnect(string reason, DisconnectType type)
Undocumented in source. Be warned that the author may not have intended to support it.
onReadData
void onReadData(Data data)
Undocumented in source. Be warned that the author may not have intended to support it.
resumeIdleTimeout
void resumeIdleTimeout()
Undocumented in source. Be warned that the author may not have intended to support it.
setIdleTimeout
void setIdleTimeout(Duration duration)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

handleIdleTimeout
void delegate() handleIdleTimeout;

Callback for when a connection has stopped responding. If unset, the connection will be disconnected.

handleNonIdle
void delegate() handleNonIdle;

Callback for when a connection is marked as non-idle (when data is received).

Inherited Members

From ConnectionAdapter

next
IConnection next;
Undocumented in source.
state
ConnectionState state [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
send
void send(Data[] data, int priority)

Queue Data for sending.

send
alias send = IConnection.send
Undocumented in source.
disconnect
void disconnect(string reason, DisconnectType type)

Terminate the connection.

onConnect
void onConnect()
Undocumented in source. Be warned that the author may not have intended to support it.
onReadData
void onReadData(Data data)
Undocumented in source. Be warned that the author may not have intended to support it.
onDisconnect
void onDisconnect(string reason, DisconnectType type)
Undocumented in source. Be warned that the author may not have intended to support it.
onBufferFlushed
void onBufferFlushed()
Undocumented in source. Be warned that the author may not have intended to support it.
handleConnect
ConnectHandler handleConnect [@property setter]

Callback for when a connection has been established.

handleReadData
ReadDataHandler handleReadData [@property setter]

Callback setter for when new data is read.

handleDisconnect
DisconnectHandler handleDisconnect [@property setter]

Callback setter for when a connection was closed.

handleBufferFlushed
BufferFlushedHandler handleBufferFlushed [@property setter]

Callback setter for when all queued data has been written.

Meta