| 103 | */ |
| 104 | template <typename Arg> |
| 105 | stream(Arg&& arg, context& ctx) |
| 106 | : next_layer_(ASIO_MOVE_CAST(Arg)(arg)), |
| 107 | core_(ctx.native_handle(), next_layer_.lowest_layer().get_executor()) |
| 108 | { |
| 109 | } |
| 110 | |
| 111 | /// Construct a stream from an existing native implementation. |
| 112 | /** |
nothing calls this directly
no test coverage detected