Package com.wowza.wms.netconnection
Interface INetConnectionPingResult
-
public interface INetConnectionPingResult
INetConnectionPingResult: callback interface used by INetConnection ping.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onResult​(INetConnection netConnection, long pingTime, int pingId, boolean result)
Triggered on server to server result from call to INetConnection.ping.
-
-
-
Method Detail
-
onResult
void onResult​(INetConnection netConnection, long pingTime, int pingId, boolean result)
Triggered on server to server result from call to INetConnection.ping. This method will be called on a success or failure (ping timeout) of a ping.- Parameters:
netConnection
- net connectionpingTime
- time in server time (milliseconds) when the ping was initiatedpingId
- internal server id for the ping requestresult
- true is ping was successful false if failure (timeout)
-
-