Mercurial > hg > Database > Alice
comparison src/main/java/alice/test/codesegment/remote/TestRemoteAlice.java @ 345:8f71c3e6f11d
Change directory structure Maven standard
author | sugi |
---|---|
date | Wed, 16 Apr 2014 18:26:07 +0900 |
parents | |
children | 3a0056e03040 |
comparison
equal
deleted
inserted
replaced
344:9f97ec18f8c5 | 345:8f71c3e6f11d |
---|---|
1 package alice.test.codesegment.remote; | |
2 | |
3 import alice.daemon.AliceDaemon; | |
4 import alice.datasegment.DataSegment; | |
5 | |
6 public class TestRemoteAlice { | |
7 | |
8 public static void main(String[] args) { | |
9 TestRemoteConfig conf = new TestRemoteConfig(args); | |
10 | |
11 new AliceDaemon(conf).listen(); | |
12 DataSegment.connect(conf.key, "", conf.hostname, conf.connectPort, false); | |
13 new RemoteStartCodeSegment().execute(); | |
14 } | |
15 | |
16 } |