How To Measure Round Trip Time Of RUDP

Diarkis UDP client has a way of measuring the round trip time of RUDP messages.

By using Echo and its response event OnEcho, you may retrieve the round trip time of RUDP messages in milliseconds.

diarkisUDpClient.OnEcho += (double echoRoundTripTime, string myClientAddress) =>
{
// echoRoundTripTime is the RUDP delivery time in milliseconds.
};

// call echo
diarkisUdpClient.Echo();