view src/test/java/alice/daemon/MulticastTest.java @ 510:118e150ac9f3 dispose

refactor
author sugi
date Fri, 09 Jan 2015 16:11:13 +0900
parents b7d02ea79850
children f3f7e256ee03
line wrap: on
line source

package alice.daemon;

import alice.datasegment.MulticastDataSegmentManager.SocketType;

public class MulticastTest {
    public static SocketType type = SocketType.Both;
    public static void main(String[] args){
        Config conf = new Config(args);
        new MulticastStartCodeSegment(conf).execute();
    }

}