Exemplo n.º 1
0
        public static void runConsole()
        {
            LogManager.ConsoleMode();
            _path = Path.GetDirectoryName(typeof(Service).Assembly.Location);
            Directory.SetCurrentDirectory(_path);

            if (_path.EndsWith("" + Path.DirectorySeparatorChar) == false)
            {
                _path += Path.DirectorySeparatorChar;
            }
            AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;

            _server = new TorpedoSyncServer();
            Console.WriteLine("\r\n\r\nPress 'q' to exit...");
            if (Global.isWindows && Global.StartWebUI)
            {
                Process.Start("http://localhost:" + Global.WebPort);
            }
            Console.CancelKeyPress += Console_CancelKeyPress;
            while (true)
            {
                var i = Console.ReadKey();
                if (i.Key == ConsoleKey.Q)
                {
                    break;
                }
            }
            _server.Stop();
        }
Exemplo n.º 2
0
 protected override void OnStop()
 {
     base.RequestAdditionalTime(2 * 60 * 1000);
     _server.Stop();
 }