Methods Summary |
---|
public long | getBytesReceived()
return( bytes_received );
|
public long | getBytesSent()
return( bytes_sent );
|
public long | getPacketsReceived()
return( packets_received );
|
public long | getPacketsSent()
return( packets_sent );
|
public long | getReceiveQueueLength()
return( packet_handler.getReceiveQueueLength());
|
public long | getRequestsTimedOut()
return( requests_timeout );
|
public long | getSendQueueLength()
return( packet_handler.getSendQueueLength());
|
protected void | packetReceived(int len)
packets_received++;
bytes_received += len;
|
protected void | packetSent(int len)
packets_sent++;
bytes_sent += len;
|
protected void | primordialPacketReceived(int len)
|
protected void | primordialPacketSent(int len)
|
protected void | requestTimedOut()
requests_timeout++;
|
public com.aelitis.net.udp.uc.PRUDPPacketHandlerStats | snapshot()
try{
return((PRUDPPacketHandlerStats)clone());
}catch( CloneNotSupportedException e ){
Debug.printStackTrace(e);
return( null );
}
|