aboutsummaryrefslogtreecommitdiff
path: root/src/IvyApplicationListener.java
diff options
context:
space:
mode:
authorjestin2004-01-12 09:48:49 +0000
committerjestin2004-01-12 09:48:49 +0000
commit64c95fd653177361f7e691ab345ed54d42ef6aed (patch)
treedb912d9c0a42a9010c9841a2a799fde0a3258456 /src/IvyApplicationListener.java
parentb06dd52e8550e16cf877a076d24eda2c91e78d7c (diff)
downloadivy-java-64c95fd653177361f7e691ab345ed54d42ef6aed.zip
ivy-java-64c95fd653177361f7e691ab345ed54d42ef6aed.tar.gz
ivy-java-64c95fd653177361f7e691ab345ed54d42ef6aed.tar.bz2
ivy-java-64c95fd653177361f7e691ab345ed54d42ef6aed.tar.xz
1.2.5 pre
Diffstat (limited to 'src/IvyApplicationListener.java')
-rwxr-xr-xsrc/IvyApplicationListener.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/IvyApplicationListener.java b/src/IvyApplicationListener.java
index bdfb12c..456a85f 100755
--- a/src/IvyApplicationListener.java
+++ b/src/IvyApplicationListener.java
@@ -9,6 +9,11 @@ package fr.dgac.ivy;
*
* The ApplicatinListenr for receiving application level events on the Ivy
* bus: connexion, disconnexion, direct messages or requests to quit.
+ *
+ * Changelog:
+ * 1.2.4
+ * - sendDie now requires a String argument ! It is MANDATORY, and could
+ * impact your implementations !
*/
public interface IvyApplicationListener extends java.util.EventListener {
@@ -26,13 +31,12 @@ public interface IvyApplicationListener extends java.util.EventListener {
* invoked when a peer request us to leave the bus
* @param client the peer
*/
- public abstract void die(IvyClient client, int id);
+ public abstract void die(IvyClient client, int id,String msgarg);
/**
* invoked when a peer sends us a direct message
* @param client the peer
* @param id
* @param msgarg the message itself
- * this is not yet implemented in java. I believe it has no real use :)
*/
public abstract void directMessage( IvyClient client, int id,String msgarg );
}