Package com.wowza.wms.netconnection
Interface INetConnectionPingResult
- 
 public interface INetConnectionPingResultINetConnectionPingResult: callback interface used by INetConnection ping. 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonResult(INetConnection netConnection, long pingTime, int pingId, boolean result)Triggered on server to server result from call to INetConnection.ping.
 
- 
- 
- 
Method Detail- 
onResultvoid 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 connection
- pingTime- time in server time (milliseconds) when the ping was initiated
- pingId- internal server id for the ping request
- result- true is ping was successful false if failure (timeout)
 
 
- 
 
-