blob: ff3233b13e6ef36689ae7c5f6f507f25fbf928ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package fr.dgac.ivy;
/**
* this interface specifies the methods of an PingCallback
*
* @author Yannick Jestin
* @author <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
*
* Changelog:
* 1.2.12
*/
public interface PingCallback {
/**
* invoked when a Pong is received
* @param elapsedTime the elapsed time in milliseconds between the ping and
* the pong
*/
void pongReceived(IvyClient ic,int elapsedTime);
}
|