view src/main/java/alice/test/codesegment/local/wordcount/StartWordCount.java @ 655:1c93e82e05c6 default tip

fix timestamp
author suruga
date Sat, 17 Feb 2018 00:33:00 +0900
parents aefbe41fcf12
children f3f7e256ee03
line wrap: on
line source

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();
    }
}