| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //
- // detail/null_reactor.hpp
- // ~~~~~~~~~~~~~~~~~~~~~~~
- //
- // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- //
- #ifndef ASIO_DETAIL_NULL_REACTOR_HPP
- #define ASIO_DETAIL_NULL_REACTOR_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
- #include "asio/detail/config.hpp"
- #if defined(ASIO_WINDOWS_RUNTIME)
- #include "asio/io_service.hpp"
- #include "asio/detail/push_options.hpp"
- namespace asio {
- namespace detail {
- class null_reactor
- : public asio::detail::service_base<null_reactor>
- {
- public:
- // Constructor.
- null_reactor(asio::io_service& io_service)
- : asio::detail::service_base<null_reactor>(io_service)
- {
- }
- // Destructor.
- ~null_reactor()
- {
- }
- // Destroy all user-defined handler objects owned by the service.
- void shutdown_service()
- {
- }
- // No-op because should never be called.
- void run(bool /*block*/, op_queue<operation>& /*ops*/)
- {
- }
- // No-op.
- void interrupt()
- {
- }
- };
- } // namespace detail
- } // namespace asio
- #include "asio/detail/pop_options.hpp"
- #endif // defined(ASIO_WINDOWS_RUNTIME)
- #endif // ASIO_DETAIL_NULL_REACTOR_HPP
|