Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge 'master' into mc
[simgrid.git] / examples / java / async / AsyncTest.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 async;
8
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.NativeException;
11
12 public class AsyncTest {
13
14         /* This only contains the launcher. If you do nothing more than than you can run 
15          *   java simgrid.msg.Msg
16          * which also contains such a launcher
17          */
18
19         public static void main(String[] args) throws NativeException {
20
21                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
22                 Msg.init(args);
23
24             if (args.length < 2) {              
25                         Msg.info("Usage   : Async platform_file deployment_file");
26                         Msg.info("example : Async basic_platform.xml basic_deployment.xml");
27                         System.exit(1); 
28                 }
29
30                 /* construct the platform and deploy the application */
31                 Msg.createEnvironment(args[0]);
32                 Msg.deployApplication(args[1]);
33
34                 /*  execute the simulation. */
35                 Msg.run();
36         }
37 }