Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a straightforward implementation of start_time and kill_time. This change the...
[simgrid.git] / examples / basic / Forwarder.java
index 0a5d051..6152da1 100644 (file)
@@ -15,9 +15,9 @@ import org.simgrid.msg.Process;
 
 
 public class Forwarder extends Process {
-       public Forwarder(Host host, String name, String[]args) {
-               super(host,name,args);
-       }    
+       public Forwarder(Host host, String name, String[]args, double startTime, double killTime) {
+               super(host,name,args,startTime,killTime);
+       } 
    public void main(String[] args) throws MsgException {
       if (args.length < 3) {    
         Msg.info("Forwarder needs 3 arguments (input mailbox, first output mailbox, last one)");