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