Mercurial > hg > Database > Alice
annotate src/alice/test/codesegment/remote/TestRemoteAlice.java @ 218:d50cddf64396 working
TestRemoteAlice works
author | sugi |
---|---|
date | Wed, 27 Mar 2013 20:35:08 +0900 |
parents | ca079a730d0b |
children | f866178f3018 |
rev | line source |
---|---|
22
2ca2d961a8d2
implements outline of TopologyManager
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
20
diff
changeset
|
1 package alice.test.codesegment.remote; |
14 | 2 |
3 import alice.daemon.AliceDaemon; | |
4 import alice.datasegment.DataSegment; | |
5 | |
6 public class TestRemoteAlice { | |
7 | |
8 public static void main(String[] args) { | |
22
2ca2d961a8d2
implements outline of TopologyManager
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
20
diff
changeset
|
9 TestRemoteConfig conf = new TestRemoteConfig(args); |
15 | 10 |
20 | 11 new AliceDaemon(conf).listen(); |
34
ca079a730d0b
added method to OutputDataSegment and Receiver, to convert type from Value to Class<?> without MessagePack
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
22
diff
changeset
|
12 DataSegment.connect(conf.key, "", conf.hostname, conf.connectPort); |
19 | 13 new RemoteStartCodeSegment().execute(); |
14 | 14 } |
15 | |
16 } |