view src/main/java/alice/test/topology/fish/DistributedFish.java @ 393:38021fceabef draft multicast

test commit
author tatsuki
date Tue, 17 Jun 2014 17:39:47 +0900
parents 8f71c3e6f11d
children
line wrap: on
line source

package alice.test.topology.fish;

import alice.topology.node.TopologyNode;

public class DistributedFish {

	public static void main(String[] args) {
		FishConfig conf = new FishConfig(args);
		new TopologyNode(conf, new StartFish());

	}

}