We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9965516 commit 4101b0cCopy full SHA for 4101b0c
hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfspp/lib/common/async_stream.h
@@ -41,7 +41,6 @@ typedef boost::asio::const_buffers_1 ConstBuffer;
41
class AsyncStream {
42
public:
43
using executor_type = boost::asio::system_executor;
44
- executor_type executor_;
45
46
virtual void async_read_some(const MutableBuffer &buf,
47
std::function<void (const boost::system::error_code & error,
@@ -54,6 +53,10 @@ class AsyncStream {
54
53
executor_type get_executor() {
55
return executor_;
56
}
+
57
+private:
58
+ executor_type executor_;
59
60
};
61
62
0 commit comments