2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-15 13:12:21 +00:00

Added connection::next_layer_type

This commit is contained in:
Ruben Perez
2022-05-19 00:26:48 +02:00
parent a1fb40a8e5
commit a48287e047

View File

@@ -124,6 +124,9 @@ public:
/// Retrieves the executor associated to this object.
executor_type get_executor() { return get_channel().get_executor(); }
/// The `Stream` type this connection is using.
using next_layer_type = Stream;
/// Retrieves the underlying Stream object.
Stream& next_layer() { return get_channel().next_layer(); }