view src/main/java/alice/test/topology/fish/SendWidth.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.codesegment.CodeSegment;
import alice.datasegment.CommandType;
import alice.datasegment.Receiver;

public class SendWidth extends CodeSegment {
	
	Receiver width = ids.create(CommandType.PEEK);

	@Override
	public void run() {
		int width = this.width.asInteger();
		ods.put("parent", "widths", width);
		
		System.out.println("send widths: " + width);
		
		SendWidth cs = new SendWidth();
		cs.width.setKey("width", this.width.index);
	}

}