diff options
author | Yang Gao <yangg@google.com> | 2015-02-12 15:21:24 -0800 |
---|---|---|
committer | Yang Gao <yangg@google.com> | 2015-02-12 15:21:24 -0800 |
commit | 068c85b21cb0ae9d08ca2a513904670ccd59269b (patch) | |
tree | a55db6138483bee079544b3e61cd7bac13dc62d7 /src/cpp/client | |
parent | 5705fe3fca7c9ed042b78dee3c2b89364fe183f8 (diff) |
make codegen generate async client calls
Diffstat (limited to 'src/cpp/client')
-rw-r--r-- | src/cpp/client/client_unary_call.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cpp/client/client_unary_call.cc b/src/cpp/client/client_unary_call.cc index bc0e83733a..1221630a35 100644 --- a/src/cpp/client/client_unary_call.cc +++ b/src/cpp/client/client_unary_call.cc @@ -60,4 +60,11 @@ Status BlockingUnaryCall(ChannelInterface *channel, const RpcMethod &method, return status; } +void AsyncUnaryCall(ChannelInterface *channel, const RpcMethod &method, + ClientContext *context, + const google::protobuf::Message &request, + google::protobuf::Message *result, Status *status, + CompletionQueue *cq, void *tag) { + +} } // namespace grpc |