private void StartCommittedCallbackThread(BlockingQueue committedInfosQueue)
 {
     if (IsEmbeddedServer())
     {
         return;
     }
     _committedCallbacksDispatcher = new CommittedCallbacksDispatcher(this, committedInfosQueue
                                                                      );
     ThreadPool().Start("Server commit callback dispatcher thread", _committedCallbacksDispatcher
                        );
 }
Пример #2
0
		private void StartCommittedCallbackThread(BlockingQueue committedInfosQueue)
		{
			if (IsEmbeddedServer())
			{
				return;
			}
			_committedCallbacksDispatcher = new CommittedCallbacksDispatcher(this, committedInfosQueue
				);
			ThreadPool().Start("Server commit callback dispatcher thread", _committedCallbacksDispatcher
				);
		}