Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
restore (and comment) a test for a feature
authorMartin Quinson <martin.quinson@loria.fr>
Sat, 20 May 2017 21:22:45 +0000 (23:22 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sat, 20 May 2017 21:22:45 +0000 (23:22 +0200)
examples/java/process/kill/Killer.java

index e03b69c..c82af1d 100644 (file)
@@ -35,5 +35,8 @@ public class Killer extends Process {
     poorVictim.kill();
 
     Msg.info("Ok, goodbye now.");
+    // The actor can also commit a suicide with the following command
+    exit(); // This will forcefully stop the current actor
+    // Of course, it's not useful here at the end of the main function, but that's for the example (and to check that this still works in the automated tests)
   }
 }