Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change the way the objects are created in ApplicationHandler: they are
[simgrid.git] / examples / async / Forwarder.java
index 3ed84f3..2a0b4c6 100644 (file)
@@ -13,7 +13,9 @@ import org.simgrid.msg.Process;
 
 
 public class Forwarder extends Process {
-
+       public Forwarder(Host host, String name, String[]args) {
+               super(host,name,args);
+       }
        public void main(String[] args) throws MsgException {
                if (args.length < 3) {   
                        Msg.info("Forwarder needs 3 arguments (input mailbox, first output mailbox, last one)");