view src/test/java/alice/daemon/MulticastTest.java @ 508:b7d02ea79850 dispose

change multicast Data Segment API
author sugi
date Sun, 04 Jan 2015 13:51:01 +0900
parents src/test/java/alice/daemon/UdpTest.java@aefbe41fcf12
children 118e150ac9f3
line wrap: on
line source

package alice.daemon;

import alice.datasegment.MulticastDataSegmentManager.SocketType;

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

}