aboutsummaryrefslogtreecommitdiff
path: root/src/IvyMessageListener.java
blob: 1ed9c94c13a30696d0ceb7bfc6de36af96a03b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * 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>
 *
 */
package fr.dgac.ivy;

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);
}