diff src/main/java/alice/test/codesegment/local/wordcount/StartWordCount.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/codesegment/local/wordcount/StartWordCount.java	Wed Apr 16 18:26:07 2014 +0900
@@ -0,0 +1,16 @@
+package alice.test.codesegment.local.wordcount;
+
+import alice.daemon.AliceDaemon;
+import alice.daemon.Config;
+
+
+public class StartWordCount {
+	public static long t = System.currentTimeMillis();
+	public static void main(String[] args){
+		
+		new AliceDaemon(new Config(args)).listen(); // logger off
+		
+		WordConfig conf = new WordConfig(args);
+		new SeparateArray(conf).execute();
+	}
+}