diff options
Diffstat (limited to 'include/grpc++/generic_stub.h')
-rw-r--r-- | include/grpc++/generic_stub.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/grpc++/generic_stub.h b/include/grpc++/generic_stub.h index d4c8380ad4..c34e1fcf55 100644 --- a/include/grpc++/generic_stub.h +++ b/include/grpc++/generic_stub.h @@ -39,6 +39,7 @@ namespace grpc { +class CompletionQueue; typedef ClientAsyncReaderWriter<ByteBuffer, ByteBuffer> GenericClientAsyncReaderWriter; @@ -51,7 +52,8 @@ class GenericStub GRPC_FINAL { // begin a call to a named method std::unique_ptr<GenericClientAsyncReaderWriter> Call( - ClientContext* context, const grpc::string& method); + ClientContext* context, const grpc::string& method, + CompletionQueue* cq, void* tag); private: std::shared_ptr<ChannelInterface> channel_; |