EndpointControl
Endpoint
663664665666667668669670671
* * @return The total throughput for the endpoint. */ public long getThroughput() { EndpointControl control = (EndpointControl)getControl(); return control.getBytesDeserialized().longValue() + control.getBytesSerialized().longValue(); }
659660661662663664665666667