annotate src/test/java/alice/daemon/MulticastStartCodeSegment.java @ 488:7ef0ebb40c9b
dispose
add measurement data in protocol
author |
sugi |
date |
Mon, 08 Dec 2014 23:11:26 +0900 |
parents |
aefbe41fcf12 |
children |
b7d02ea79850 |
rev |
line source |
368
|
1 package alice.daemon;
|
|
2
|
|
3 import alice.codesegment.CodeSegment;
|
|
4
|
|
5 public class MulticastStartCodeSegment extends CodeSegment {
|
|
6
|
419
|
7 @Override
|
|
8 public void run() {
|
|
9 MulticastIncrement cs = new MulticastIncrement();
|
|
10 cs.num.setKey("multicast","num");
|
|
11
|
|
12 ods.put("multicast", "num", 0);
|
|
13 }
|
368
|
14
|
|
15 }
|