Bamboo.Prevalence.PrevalenceEngine.Pause C# (CSharp) 메소드

Pause() 공개 메소드

Pauses the engine. When paused the engine will not accept any commands (ExecuteCommand will throw PausedEngineException instead). The engine never stops accepting queries. The engine will accept commands again after Resume.
public Pause ( ) : void
리턴 void
		public void Pause()
		{
			if (_paused)
			{
				return;
			}

			_clock.Pause();
			_paused = true;
		}