public interface ActiveHTTPConnection
WebServer.getOpenConnections()
to provide detailed information about an open HTTP connection.Modifier and Type | Method and Description |
---|---|
String |
getBytesIn()
Returns the number of bytes received.
|
String |
getBytesOut()
Returns the number of bytes send.
|
String |
getConnectedSince()
Returns the duration of the connection.
|
String |
getDownlink()
Returns the downlink (outgoing) bandwidth.
|
String |
getLatency()
Returns latency information as a pair of numbers like "8ms / 5ms".
|
int |
getNumKeepAlive()
Returns the number of keep-alives performed on this connection.
|
String |
getRemoteAddress()
Returns the remote address which opened the connection.
|
String |
getUplink()
Returns the uplink (incoming) bandwidth.
|
String |
getURL()
Returns the url currently being processed.
|
int getNumKeepAlive()
String getURL()
String getConnectedSince()
String getBytesIn()
String getBytesOut()
String getUplink()
String getDownlink()
String getRemoteAddress()
String getLatency()
The first of those number is how long the server has been waiting for a chunk to arrive at the server. The second one is the (blocking) time it takes to process this chunk.
Copyright © 2018. All rights reserved.