2
0
mirror of https://github.com/boostorg/asio.git synced 2026-01-31 19:52:09 +00:00
Files
asio/include
Christopher Kohlhoff b9dce65df6 Add rebind_executor to all I/O object types.
The I/O objects provided by Asio now support the nested template type
`rebind_executor` as a way to generically rebind them to an alternative
I/O executor type. For example:

  using my_socket_type =
    tcp::socket::rebind_executor<my_executor_type>::other;
2019-10-30 20:46:29 +11:00
..