view src/alice/test/topology/aquarium/fx/OtherNode.java @ 4:50d77513d52e

Platform runLater must use for handling instance from other thread (Not on FX application thread )
author e095732
date Mon, 28 Jan 2013 00:22:17 +0900
parents b997f2ce1a04
children bf24d5200770
line wrap: on
line source

package alice.test.topology.aquarium.fx;

import alice.codesegment.CodeSegment;

public class OtherNode extends CodeSegment{

	@Override
	public void run() {
		ods.put("local", "list", new RoutingTable("parent"));
		new RegistRoutingTable();
		ods.put("parent", "member", "ADD_MEM");
		
	}

}