X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7b2ada64c54a71cc16c1b30048669b0707985c6d..3189d7d6aafade3860d50252491bb52adbb7b262:/examples/java/io/storage/Main.java diff --git a/examples/java/io/storage/Main.java b/examples/java/io/storage/Main.java new file mode 100644 index 0000000000..9b77b8ddfe --- /dev/null +++ b/examples/java/io/storage/Main.java @@ -0,0 +1,28 @@ +/* Copyright (c) 2012-2014. The SimGrid Team. + * All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + +package io.storage; +import org.simgrid.msg.Msg; +import org.simgrid.msg.Host; +import org.simgrid.msg.MsgException; + +public class Main { + public static void main(String[] args) throws MsgException { + Msg.init(args); + if(args.length < 1) { + Msg.info("Usage : Storage platform_file "); + Msg.info("example : Storage ../platforms/storage/storage.xml "); + System.exit(1); + } + + Msg.createEnvironment(args[0]); + + Host[] hosts = Host.all(); + new io.storage.Client(hosts[0],0).start(); + + Msg.run(); + } +}