123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- #ifndef BOOST_THREAD_EXECUTORS_EXECUTOR_HPP
- #define BOOST_THREAD_EXECUTORS_EXECUTOR_HPP
- #include <boost/thread/detail/config.hpp>
- #if defined BOOST_THREAD_PROVIDES_FUTURE_CONTINUATION && defined BOOST_THREAD_PROVIDES_EXECUTORS && defined BOOST_THREAD_USES_MOVE
- #include <boost/thread/detail/delete.hpp>
- #include <boost/thread/detail/move.hpp>
- #include <boost/thread/executors/work.hpp>
- #include <boost/config/abi_prefix.hpp>
- namespace boost
- {
- namespace executors
- {
- class executor
- {
- public:
-
- typedef executors::work work;
-
- BOOST_THREAD_NO_COPYABLE(executor)
- executor() {}
-
- virtual ~executor() {}
-
- virtual void close() = 0;
-
- virtual bool closed() = 0;
-
- virtual void submit(BOOST_THREAD_RV_REF(work) closure) = 0;
-
- #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
- template <typename Closure>
- void submit(Closure & closure)
- {
- work w ((closure));
- submit(boost::move(w));
- }
- #endif
- void submit(void (*closure)())
- {
- work w ((closure));
- submit(boost::move(w));
- }
- template <typename Closure>
- void submit(BOOST_THREAD_FWD_REF(Closure) closure)
- {
-
- work w((boost::forward<Closure>(closure)));
- submit(boost::move(w));
- }
-
- virtual bool try_executing_one() = 0;
-
- template <typename Pred>
- bool reschedule_until(Pred const& pred)
- {
- do {
-
- if ( ! try_executing_one())
- {
- return false;
- }
- } while (! pred());
- return true;
- }
- };
- }
- using executors::executor;
- }
- #include <boost/config/abi_suffix.hpp>
- #endif
- #endif
|