Package one.nio.server
Interface ServerMXBean
-
- All Known Implementing Classes:
HttpServer,ManagementServer,RpcServer,Server
public interface ServerMXBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetAcceptedSessions()intgetConnections()longgetKeepAlive()longgetQueueAvgBytes()doublegetQueueAvgLength()longgetQueueMaxBytes()longgetQueueMaxLength()longgetRejectedSessions()longgetRequestsProcessed()longgetRequestsRejected()doublegetSelectorAvgReady()intgetSelectorCount()intgetSelectorMaxReady()longgetSelectorOperations()longgetSelectorSessions()intgetWorkers()intgetWorkersActive()booleangetWorkersUsed()voidreset()
-
-
-
Method Detail
-
getConnections
int getConnections()
-
getWorkersUsed
boolean getWorkersUsed()
-
getWorkers
int getWorkers()
-
getWorkersActive
int getWorkersActive()
-
getKeepAlive
long getKeepAlive()
-
getAcceptedSessions
long getAcceptedSessions()
-
getRejectedSessions
long getRejectedSessions()
-
getSelectorCount
int getSelectorCount()
-
getSelectorAvgReady
double getSelectorAvgReady()
-
getSelectorMaxReady
int getSelectorMaxReady()
-
getSelectorOperations
long getSelectorOperations()
-
getSelectorSessions
long getSelectorSessions()
-
getQueueAvgLength
double getQueueAvgLength()
-
getQueueAvgBytes
long getQueueAvgBytes()
-
getQueueMaxLength
long getQueueMaxLength()
-
getQueueMaxBytes
long getQueueMaxBytes()
-
getRequestsProcessed
long getRequestsProcessed()
-
getRequestsRejected
long getRequestsRejected()
-
reset
void reset()
-
-