Mercurial > hg > Database > Alice
annotate src/main/java/alice/test/topology/ring/RingTopology.java @ 543:f3f7e256ee03 dispose
add AliceDaemon on paramater
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Aug 2015 20:00:53 +0900 |
parents | aefbe41fcf12 |
children |
rev | line source |
---|---|
345 | 1 package alice.test.topology.ring; |
2 | |
3 import alice.topology.node.TopologyNode; | |
4 | |
5 public class RingTopology { | |
419 | 6 |
7 public static void main(String[] args) { | |
8 RingTopologyConfig conf = new RingTopologyConfig(args); | |
9 new TopologyNode(conf, new StartRing(conf)); | |
10 } | |
11 | |
345 | 12 } |