예제 #1
0
파일: connection.hpp 프로젝트: ablochs/fix8
	/*! Check if the reader will block
	    \param ts timeout
	    \return true if won't block */
	bool reader_poll(const Poco::Timespan &ts = Poco::Timespan()) const { return _reader.poll(ts); }
예제 #2
0
파일: connection.hpp 프로젝트: ablochs/fix8
	/*! Call the FIXreader method
	    \return result of call */
	int reader_execute() { return _reader.execute(_reader.cancellation_token()); }
예제 #3
0
파일: connection.hpp 프로젝트: ablochs/fix8
	/*! Check to see if the socket is in error
	    \return true if there was a socket error */
	bool is_socket_error() const { return _reader.is_socket_error(); }
예제 #4
0
파일: connection.hpp 프로젝트: ablochs/fix8
	/*! Wait till reader thead has finished.
	    \return 0 on success */
	int join() { return _reader.join(); }
예제 #5
0
	/*! Check if the reader will block
	    \return true if won't block */
	bool reader_poll() const { return _reader.poll(); }
예제 #6
0
	/*! Call the FIXreader method
	    \return result of call */
	int reader_execute() { return _reader.execute(); }