blob: de722d59c0b67570c3a6bfaa0ca0f0bd49136241 (
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 IvyMessageListener
*
* @author Francois-Rzgis Colin
* @author Yannick Jestin
* @author <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
*
*/
public interface IvyMessageListener extends java.util.EventListener
{
/**
* this callback is invoked when a message has been received
* @param client the peer who sent the message
* @param args the array of string, on string for each subregexp
*/
void receive(IvyClient client, String[] args);
}
|