Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[simgrid.git] / examples / java / suspend / LazyGuy.java
1 /* Copyright (c) 2006-2014, 2016. 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
13 public class LazyGuy extends Process {
14   public LazyGuy(Host host, String name, String[]args) {
15     super(host,name,args);
16   }
17
18   public void main(String[] args) throws MsgException {
19     Msg.info("Nobody's watching me ? Let's go to sleep.");
20     suspend();
21     Msg.info("Uuuh ? Did somebody call me ?");
22     Msg.info("Mmmh, goodbye now.");
23   }
24 }