Mercurial > hg > Database > Alice
diff src/main/java/alice/test/concurrent/AliceFinish.java @ 345:8f71c3e6f11d
Change directory structure Maven standard
author | sugi |
---|---|
date | Wed, 16 Apr 2014 18:26:07 +0900 |
parents | |
children | aefbe41fcf12 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/java/alice/test/concurrent/AliceFinish.java Wed Apr 16 18:26:07 2014 +0900 @@ -0,0 +1,25 @@ +package alice.test.concurrent; + +import alice.codesegment.CodeSegment; +import alice.datasegment.CommandType; +import alice.datasegment.Receiver; + +public class AliceFinish extends CodeSegment { + + private int num; + + public Receiver ds1 = ids.create(CommandType.TAKE); + + public AliceFinish(int threadNum) { + this.num = threadNum; + } + + @Override + public void run() { + if (--num == 0) System.exit(0); + + AliceFinish cs1 = new AliceFinish(num); + cs1.ds1.setKey("finish"); + } + +}