Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill tracing-gtnets examples
[simgrid.git] / examples / java / suspend / DreamMaster.java
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 package suspend;
8 import org.simgrid.msg  .Host;
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.Process;
11 import org.simgrid.msg.MsgException;
12 import org.simgrid.msg.HostNotFoundException;
13
14 public class DreamMaster extends Process {
15   public DreamMaster(String hostname, String name)  throws HostNotFoundException{
16     super(hostname,name);
17   }
18
19   public void main(String[] args) throws MsgException {
20     Msg.info("Let's create a lazy guy.");
21     Process lazyGuy = new LazyGuy(getHost(),"Lazy",null);
22     lazyGuy.start();
23     Msg.info("Let's wait a little bit...");
24     waitFor(10);
25     Msg.info("Let's wake the lazy guy up! >:) BOOOOOUUUHHH!!!!");
26     lazyGuy.resume();
27     Msg.info("OK, goodbye now.");
28   }
29 }