예제 #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
파일: logger.hpp 프로젝트: douwen2000/fix8
	/// Stop the logging thread.
	void stop() {  _stopping = true; send(std::string()); _thread.join(); }
예제 #9
0
파일: logger.hpp 프로젝트: douwen2000/fix8
	/// Kill the logging thread.
	void kill() { _thread.kill(0); }
예제 #10
0
파일: logger.hpp 프로젝트: douwen2000/fix8
	/*! 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; }