view src/main/java/alice/topology/node/TopologyNode.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.topology.node;

import alice.codesegment.CodeSegment;
import alice.daemon.AliceDaemon;

public class TopologyNode {

	public TopologyNode(TopologyNodeConfig conf, CodeSegment startCS) {
		new AliceDaemon(conf).listen();
		new StartTopologyNode(conf, startCS).execute();
	}
	
	public static void main(String[] args) {
		TopologyNodeConfig conf = new TopologyNodeConfig(args);
		new TopologyNode(conf, null);
	}

}