コード例 #1
0
        private void LaunchServer()
        {
            using (ConsoleEventHandler handler = new ConsoleEventHandler())
            {
                handler.OnConsoleEvent += new EventHandler(HandleControlEvent);

                using (server = serverFactory.Create(args.UseRemoting, args.ConfigFile))
                {
                    if (args.Project == null)
                    {
                        server.Start();
                        server.WaitForExit();
                    }
                    else
                    {
                        // Force the build
                        ValidateResponse(
                            server.ForceBuild(
                                new ProjectRequest(SecurityOverride.SessionIdentifier, args.Project)));

                        // Tell the server to stop as soon as the build has finished and then wait for it
                        ValidateResponse(
                            server.Stop(
                                new ProjectRequest(SecurityOverride.SessionIdentifier, args.Project)));
                        server.WaitForExit(
                            new ProjectRequest(SecurityOverride.SessionIdentifier, args.Project));
                    }
                }
            }
        }
コード例 #2
0
        public void Stop(string reason)
        {
            // Since there may be a race condition around stopping the runner, check if it should be stopped
            // within a lock statement
            bool stopRunner = false;

            lock (lockObject)
            {
                if (!isStopping)
                {
                    stopRunner = true;
                    isStopping = true;
                }
            }
            if (stopRunner)
            {
                // Perform the actual stop
                Log.Info("Stopping service: " + reason);
                server.Stop();
                server.WaitForExit();
                Log.Debug("Service has been stopped");
            }
        }
コード例 #3
0
 public void Stop()
 {
     _server.Stop();
 }
コード例 #4
0
 /// <summary>
 /// Stops this instance.
 /// </summary>
 /// <remarks></remarks>
 public void Stop()
 {
     server.Stop();
     server.WaitForExit();
 }
コード例 #5
0
ファイル: CCService.cs プロジェクト: divyang4481/ci-factory
 protected override void OnPause()
 {
     server.Stop();
 }
コード例 #6
0
 public void Stop()
 {
     cruiseServer.Stop();
 }
コード例 #7
0
 /// <summary>
 /// Requests all started projects within the CruiseControl.NET server to stop
 /// </summary>
 public virtual void Stop()
 {
     server.Stop();
 }
コード例 #8
0
        private void LaunchServer()
        {
            using (ConsoleEventHandler handler = new ConsoleEventHandler())
            {
                handler.OnConsoleEvent += new EventHandler(HandleControlEvent);

                using (server = serverFactory.Create(args.UseRemoting, args.ConfigFile))
                {
                    if (args.Project == null)
                    {
                        server.Start();
                        server.WaitForExit();
                    }
                    else
                    {
                        // Force the build
                        ValidateResponse(
                            server.ForceBuild(
                                new ProjectRequest(null, args.Project)));

                        // Tell the server to stop as soon as the build has finished and then wait for it
                        ValidateResponse(
                            server.Stop(
                                new ProjectRequest(null, args.Project)));
                        server.WaitForExit(
                            new ProjectRequest(null, args.Project));
                    }
                }
            }
        }
コード例 #9
0
        /// <summary>
        /// Stops the specified project.
        /// </summary>
        /// <param name="project">The project.</param>
        /// <remarks></remarks>
        public void Stop(string project)
        {
            Response resp = cruiseServer.Stop(GenerateProjectRequest(project));

            ValidateResponse(resp);
        }