Dart SDK
dart:io
HttpConnectionsInfo
class
HttpConnectionsInfo
Properties
Constructors
Properties
total
active
idle
closing
Constructors
HttpConnectionsInfo
Summary statistics about an
HttpServer
s current socket connections.
Properties
int
total
read / write
Total number of socket connections.
int
active
read / write
Number of active connections where actual request/response processing is active.
int
idle
read / write
Number of idle connections held by clients as persistent connections.
int
closing
read / write
Number of connections which are preparing to close. Note: These connections are also part of the active count as they might still be sending data to the client before finally closing.
Constructors
HttpConnectionsInfo
()