view src/main/java/alice/test/topology/fish/StartStartX.java @ 402:dbfeb353a78d draft multicast tip

refs #3 test commit
author tatsuki
date Tue, 24 Jun 2014 19:06:41 +0900
parents 8f71c3e6f11d
children
line wrap: on
line source

package alice.test.topology.fish;

import alice.codesegment.CodeSegment;
import alice.datasegment.CommandType;
import alice.datasegment.Receiver;

public class StartStartX extends CodeSegment {
	
	public Receiver width = ids.create(CommandType.PEEK);
	
	@Override
	public void run() {
		ods.update("local", "startX", 0);
		StartStartX cs = new StartStartX();
		cs.width.setKey("local", "width", this.width.index);
	}

}