view src/main/java/app/bbs/DistributeApp.java @ 124:dacfa7eba841

To select persistent mode "-persistent"
author one
date Sat, 11 Jan 2014 06:33:54 +0900
parents 8f9811a1e00c
children 69b5565c4a63
line wrap: on
line source

package app.bbs;


import alice.jungle.remote.RemoteConfig;
import alice.topology.node.TopologyNode;
import app.bbs.codesegment.StartBBSCodeSegment;


public class DistributeApp 
{
    public static void main( String[] args ) throws Exception
    {
   		RemoteConfig conf = new RemoteConfig(args);
   		new TopologyNode(conf, new StartBBSCodeSegment(args, conf.bbsPort));
    }
}