aboutsummaryrefslogtreecommitdiff
path: root/src/IvyMessageListener.java
blob: e960afb1236419ea4902f5ec2dc4611fdda3edea (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	François-Régis 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
   */
  public abstract void receive(IvyClient client, String[] args);
}