public static void Main(string[] args) { // new Thread(() => // { // Thread.CurrentThread.IsBackground = true; // // MathServer.start(); // }).Start(); // Thread.Sleep(50); // InfoServer.start(); MathServer.start(); }
public static void start() { var m = new MathServer(); ORBMiddleware.Register(MATH_SERVER_NAME, MATH_SERVER_PORT, "math", m); }