aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpcpp/generic
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-11-30 02:16:08 -0800
committerGravatar Vijay Pai <vpai@google.com>2018-11-30 04:13:40 -0800
commitea1156da3fb3d6fb8660d078e70cf5486fc71a65 (patch)
treea18b3bf4a8d718cf5fe7a2e67c8a951b08bcec5d /include/grpcpp/generic
parentdac2066a1c0df628fefe4144ae0f97337af6324e (diff)
Stop exposing streaming object class
Diffstat (limited to 'include/grpcpp/generic')
-rw-r--r--include/grpcpp/generic/generic_stub.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/grpcpp/generic/generic_stub.h b/include/grpcpp/generic/generic_stub.h
index ccbf8a0e55..eb014184e4 100644
--- a/include/grpcpp/generic/generic_stub.h
+++ b/include/grpcpp/generic/generic_stub.h
@@ -77,9 +77,9 @@ class GenericStub final {
const ByteBuffer* request, ByteBuffer* response,
std::function<void(Status)> on_completion);
- experimental::ClientCallbackReaderWriter<ByteBuffer, ByteBuffer>*
- PrepareBidiStreamingCall(ClientContext* context, const grpc::string& method,
- experimental::ClientBidiReactor* reactor);
+ void PrepareBidiStreamingCall(
+ ClientContext* context, const grpc::string& method,
+ experimental::ClientBidiReactor<ByteBuffer, ByteBuffer>* reactor);
private:
GenericStub* stub_;