diff options
Diffstat (limited to 'src/Probe.java')
-rw-r--r-- | src/Probe.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Probe.java b/src/Probe.java index 7719e73..be2275e 100644 --- a/src/Probe.java +++ b/src/Probe.java @@ -8,7 +8,12 @@ import gnu.getopt.Getopt; * @see fr.dgac.ivy.TestIvySwing * @author Yannick Jestin * @author <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a> - * TODO BUG ! Should exit on end of user input + * + * + * Changelog: + * 1.0.10 + * Should exit on end of user input + * Should handle multiple domains - it was a IvyWatcher problem - */ class Probe implements IvyApplicationListener, IvyMessageListener { @@ -82,6 +87,7 @@ class Probe implements IvyApplicationListener, IvyMessageListener { public void die(IvyClient client, int id) { looping=false; System.out.println("received die msg from " + client.getApplicationName() ); + System.exit(0); } public void directMessage(IvyClient client, int id, String arg) { |