コード例 #1
0
ファイル: Program.cs プロジェクト: vnemes/ObjectRequestBroker
        public static void Main(string[] args)
        {
//            new Thread(() =>
//            {
//                Thread.CurrentThread.IsBackground = true;
//
//                MathServer.start();
//            }).Start();
//            Thread.Sleep(50);
//            InfoServer.start();
            MathServer.start();
        }
コード例 #2
0
        public static void start()
        {
            var m = new MathServer();

            ORBMiddleware.Register(MATH_SERVER_NAME, MATH_SERVER_PORT, "math", m);
        }