command-line server. provides a common Main() function for the application that parses command-line options and invokes the appropriate server, until it quits
Ejemplo n.º 1
0
 public static void Main(string[] args)
 {
     Agnos.Servers.CmdlineServer server = new Agnos.Servers.CmdlineServer(
             new FeatureTest.ProcessorFactory(new Handler()));
     server.Main(args);
 }
Ejemplo n.º 2
0
Archivo: Main.cs Proyecto: zlorb/agnos
 public static void Main(string[] args)
 {
     Agnos.Servers.CmdlineServer server = new Agnos.Servers.CmdlineServer(
         new FeatureTest.ProcessorFactory(new Handler()));
     server.Main(args);
 }