Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'hypervisor' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid...
[simgrid.git] / examples / java / async / AsyncTest.java
1 /*
2  * Copyright (c) 2006-2013. The SimGrid Team.
3  * All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. 
7  */
8
9 package async;
10
11 import org.simgrid.msg.Msg;
12 import org.simgrid.msg.NativeException;
13
14 public class AsyncTest {
15
16         /* This only contains the launcher. If you do nothing more than than you can run 
17          *   java simgrid.msg.Msg
18          * which also contains such a launcher
19          */
20
21         public static void main(String[] args) throws NativeException {
22
23                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
24                 Msg.init(args);
25
26             if (args.length < 2) {              
27                         Msg.info("Usage   : Async platform_file deployment_file");
28                         Msg.info("example : Async basic_platform.xml basic_deployment.xml");
29                         System.exit(1); 
30                 }
31
32                 /* construct the platform and deploy the application */
33                 Msg.createEnvironment(args[0]);
34                 Msg.deployApplication(args[1]);
35
36                 /*  execute the simulation. */
37                 Msg.run();
38         }
39 }