예제 #1
0
	/*! Wait till processing thead has finished.
	    \return 0 on success */
	int join() { return _pmodel == pm_pipeline ? _thread.join() : -1; }
예제 #2
0
파일: connection.hpp 프로젝트: jzsu/fix8
	/*! Wait till processing thead has finished.
	    \return 0 on success */
	int join() { return _thread.join(); }
예제 #3
0
파일: timer.hpp 프로젝트: 6qat/fix8
	/// Join timer thread. Wait till exits.
   void join() { _thread.join(); }
예제 #4
0
파일: logger.hpp 프로젝트: douwen2000/fix8
	/// Stop the logging thread.
	void stop() {  _stopping = true; send(std::string()); _thread.join(); }
예제 #5
0
파일: connection.hpp 프로젝트: zouf/fix8
	/*! Wait till processing thead has finished.
	    \return 0 on success */
	int join() { return _pipelined ? _thread.join() : -1; }