示例#1
0
文件: connection.hpp 项目: zouf/fix8
	/// Start the processing threads.
	virtual void start()
	{
		_socket_error = false;
		AsyncSocket<f8String>::start();
		if (_pipelined)
		{
			if (_callback_thread.start())
				_socket_error = true;
		}
	}
示例#2
0
	/// Start the processing threads.
	virtual void start()
	{
		_socket_error = false;
		if (_pmodel != pm_coro)
			AsyncSocket<f8String>::start();
		if (_pmodel == pm_pipeline)
		{
			if (_callback_thread.start())
				_socket_error = true;
		}
	}
示例#3
0
	/*! Wait till processing thead has finished.
	    \return 0 on success */
	int join() { return _pmodel == pm_pipeline ? _thread.join() : -1; }
示例#4
0
	/// Stop the processing thread and quit.
	virtual void quit() { _thread.kill(1); }
示例#5
0
	/// Start the processing thread.
	virtual void start() { _thread.start(); }
示例#6
0
	/// Stop the processing threads and quit.
	virtual void quit()
	{
		if (_pmodel == pm_pipeline)
			_callback_thread.kill(1);
		AsyncSocket<f8String>::quit();
	}
示例#7
0
文件: connection.hpp 项目: jzsu/fix8
	/*! Wait till processing thead has finished.
	    \return 0 on success */
	int join() { return _thread.join(); }
示例#8
0
	/// Stop the logging thread.
	void stop() {  _stopping = true; send(std::string()); _thread.join(); }
示例#9
0
	/// Kill the logging thread.
	void kill() { _thread.kill(0); }
示例#10
0
	/*! Ctor.
	    \param flags ebitset flags */
	Logger(const LogFlags flags) : _thread(ref(*this)), _flags(flags), _ofs(), _lines(), _sequence(), _osequence()
	{
		_stopping = false;
		_thread.start();
	}
示例#11
0
文件: timer.hpp 项目: 6qat/fix8
	/// Start the timer thread.
	void start() { _thread.start(); }
示例#12
0
文件: timer.hpp 项目: 6qat/fix8
	/// Join timer thread. Wait till exits.
   void join() { _thread.join(); }
示例#13
0
文件: timer.hpp 项目: 6qat/fix8
	/*! Kill timer thread.
	  \param sig signal to kill with */
   void kill(const int sig=SIGKILL) { _thread.kill(sig); }
示例#14
0
文件: connection.hpp 项目: zouf/fix8
	/*! Wait till processing thead has finished.
	    \return 0 on success */
	int join() { return _pipelined ? _thread.join() : -1; }