GRPC C++  1.22.0
generic_stub_impl.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2015 gRPC authors.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */
18 
19 #ifndef GRPCPP_GENERIC_GENERIC_STUB_IMPL_H
20 #define GRPCPP_GENERIC_GENERIC_STUB_IMPL_H
21 
22 #include <functional>
23 
28 #include <grpcpp/support/status.h>
29 
30 namespace grpc {
31 
32 typedef ClientAsyncReaderWriter<ByteBuffer, ByteBuffer>
35 } // namespace grpc
36 namespace grpc_impl {
37 class CompletionQueue;
38 
41 class GenericStub final {
42  public:
43  explicit GenericStub(std::shared_ptr<grpc::ChannelInterface> channel)
44  : channel_(channel) {}
45 
50  std::unique_ptr<grpc::GenericClientAsyncReaderWriter> PrepareCall(
51  grpc::ClientContext* context, const grpc::string& method,
53 
58  std::unique_ptr<grpc::GenericClientAsyncResponseReader> PrepareUnaryCall(
59  grpc::ClientContext* context, const grpc::string& method,
60  const grpc::ByteBuffer& request, grpc::CompletionQueue* cq);
61 
68  std::unique_ptr<grpc::GenericClientAsyncReaderWriter> Call(
69  grpc::ClientContext* context, const grpc::string& method,
70  grpc::CompletionQueue* cq, void* tag);
71 
76  public:
77  explicit experimental_type(GenericStub* stub) : stub_(stub) {}
78 
81  void UnaryCall(grpc::ClientContext* context, const grpc::string& method,
82  const grpc::ByteBuffer* request, grpc::ByteBuffer* response,
83  std::function<void(grpc::Status)> on_completion);
84 
87  void UnaryCall(grpc::ClientContext* context, const grpc::string& method,
88  const grpc::ByteBuffer* request, grpc::ByteBuffer* response,
90 
94  void PrepareBidiStreamingCall(
95  grpc::ClientContext* context, const grpc::string& method,
97  grpc::ByteBuffer>* reactor);
98 
99  private:
100  GenericStub* stub_;
101  };
102 
107 
108  private:
109  std::shared_ptr<grpc::ChannelInterface> channel_;
110 };
111 
112 } // namespace grpc_impl
113 
114 #endif // GRPCPP_GENERIC_GENERIC_STUB_IMPL_H
std::string string
Definition: config.h:35
NOTE: class experimental_type is not part of the public API of this class TODO(vjpai): Move these con...
Definition: generic_stub_impl.h:75
Async API for client-side unary RPCs, where the message response received from the server is of type ...
Definition: async_unary_call.h:97
GenericStub(std::shared_ptr< grpc::ChannelInterface > channel)
Definition: generic_stub_impl.h:43
Generic stubs provide a type-unsafe interface to call gRPC methods by name.
Definition: generic_stub_impl.h:41
ClientAsyncResponseReader< ByteBuffer > GenericClientAsyncResponseReader
Definition: generic_stub_impl.h:34
This header provides an object that reads bytes directly from a grpc::ByteBuffer, via the ZeroCopyInp...
Definition: alarm.h:24
experimental_type(GenericStub *stub)
Definition: generic_stub_impl.h:77
ClientBidiReactor is the interface for a bidirectional streaming RPC.
Definition: client_callback.h:99
ClientUnaryReactor is a reactor-style interface for a unary RPC.
Definition: client_callback.h:373
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm_impl.h:33
experimental_type experimental()
NOTE: The function experimental() is not stable public API.
Definition: generic_stub_impl.h:106
A thin wrapper around grpc_completion_queue (see src/core/lib/surface/completion_queue.h).
Definition: completion_queue_impl.h:102
A ClientContext allows the person implementing a service client to:
Definition: client_context_impl.h:178
Did it work? If it didn&#39;t, why?
Definition: status.h:31
ClientAsyncReaderWriter< ByteBuffer, ByteBuffer > GenericClientAsyncReaderWriter
Definition: generic_stub_impl.h:33
A sequence of bytes.
Definition: byte_buffer.h:65