aboutsummaryrefslogtreecommitdiff
path: root/src/IvyApplicationListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/IvyApplicationListener.java')
-rwxr-xr-xsrc/IvyApplicationListener.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/IvyApplicationListener.java b/src/IvyApplicationListener.java
index 456a85f..2dac989 100755
--- a/src/IvyApplicationListener.java
+++ b/src/IvyApplicationListener.java
@@ -37,6 +37,11 @@ public interface IvyApplicationListener extends java.util.EventListener {
* @param client the peer
* @param id
* @param msgarg the message itself
+ *
+ * there is no need to use a bus close() or stop() operation within a die()
+ * method, it will be called automatically. Furthermore, it is considered
+ * poor style to enforce the end of a program with System.exit(), you should
+ * consider terminating all threads ( AWT, etc )
*/
public abstract void directMessage( IvyClient client, int id,String msgarg );
}