command-line server. provides a common Main() function for the application that parses command-line options and invokes the appropriate server, until it quits
예제 #1
0
파일: Main.cs 프로젝트: tomerfiliba/agnos
 public static void Main(string[] args)
 {
     Agnos.Servers.CmdlineServer server = new Agnos.Servers.CmdlineServer(
             new FeatureTest.ProcessorFactory(new Handler()));
     server.Main(args);
 }
예제 #2
0
파일: Main.cs 프로젝트: zlorb/agnos
 public static void Main(string[] args)
 {
     Agnos.Servers.CmdlineServer server = new Agnos.Servers.CmdlineServer(
         new FeatureTest.ProcessorFactory(new Handler()));
     server.Main(args);
 }