コード例 #1
0
ファイル: connection.hpp プロジェクト: ervinbosenbacher/fix8
	/*! 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; }