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