예제 #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
	/// Start the processing thread.
	virtual void start() { _thread.start(); }
예제 #4
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();
	}
예제 #5
0
파일: timer.hpp 프로젝트: 6qat/fix8
	/// Start the timer thread.
	void start() { _thread.start(); }