forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasync_streaming_read_write_rpc.h
143 lines (130 loc) · 5.49 KB
/
async_streaming_read_write_rpc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_ASYNC_STREAMING_READ_WRITE_RPC_H
#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_ASYNC_STREAMING_READ_WRITE_RPC_H
#include "google/cloud/future.h"
#include "google/cloud/rpc_metadata.h"
#include "google/cloud/status.h"
#include "google/cloud/version.h"
#include "absl/types/optional.h"
#include <grpcpp/support/async_stream.h>
namespace google {
namespace cloud {
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
/**
* A streaming read-write RPC
*
* Streaming read-write RPCs (sometimes called bidirectional streaming RPCs)
* allow applications to send multiple "requests" and receive multiple
* "responses" on the same request. They are often used in services where
* sending one request at a time introduces too much latency. The requests
*/
template <typename Request, typename Response>
class AsyncStreamingReadWriteRpc {
public:
virtual ~AsyncStreamingReadWriteRpc() = default;
/**
* Sends a best-effort request to cancel the RPC.
*
* The application should still wait for the current operation(s) (any pending
* `Start()`, `Read()`, or `Write*()` requests) to complete and use `Finish()`
* to determine the status of the RPC.
*/
virtual void Cancel() = 0;
/**
* Start the streaming RPC.
*
* Applications should call `Start()` and wait for its result before calling
* `Read()` and/or `Write()`. If `Start()` completes with `false` the stream
* has completed with an error. The application should not call `Read()` or
* `Write()` in this case. On errors, the application should call`Finish()` to
* determine the status of the streaming RPC.
*/
virtual future<bool> Start() = 0;
/**
* Read one response from the streaming RPC.
*
* @note Only **one** `Read()` operation may be pending at a time. The
* application is responsible for waiting until any previous `Read()`
* operations have completed before calling `Read()` again.
*
* Whether `Read()` can be called before a `Write()` operation is specified by
* each service and RPC. Most services require at least one `Write()` call
* before calling `Read()`. Many services may return more than one response
* for a single `Write()` request. Each service and RPC specifies how to
* discover if more responses will be forthcoming.
*
* If the `optional<>` is not engaged the streaming RPC has completed. The
* application should wait until any other pending operations (typically any
* other `Write()` calls) complete and then call `Finish()` to find the status
* of the streaming RPC.
*/
virtual future<absl::optional<Response>> Read() = 0;
/**
* Write one request to the streaming RPC.
*
* @note Only **one** `Write()` operation may be pending at a time. The
* application is responsible for waiting until any previous `Write()`
* operations have completed before calling `Write()` again.
*
* Whether `Write()` can be called before waiting for a matching `Read()`
* operation is specified by each service and RPC. Many services tolerate
* multiple `Write()` calls before performing or at least receiving a `Read()`
* response.
*
* If `Write()` completes with `false` the streaming RPC has completed. The
* application should wait until any other pending operations (typically any
* other `Read()` calls) complete and then call `Finish()` to find the status
* of the streaming RPC.
*/
virtual future<bool> Write(Request const&, grpc::WriteOptions) = 0;
/**
* Half-closes the streaming RPC.
*
* Sends an indication to the service that no more requests will be issued by
* the client.
*
* If `WritesDone()` completes with `false` the streaming RPC has completed.
* The application should wait until any other pending operations (typically
* any other `Read()` calls) complete and then call `Finish()` to find the
* status of the streaming RPC.
*/
virtual future<bool> WritesDone() = 0;
/**
* Return the final status of the streaming RPC.
*
* Streaming RPCs may return an error because the stream is closed,
* independently of any whether the application has called `WritesDone()` or
* signaled that the stream is closed using other mechanisms (some RPCs define
* specific attributes to "close" the stream).
*
* The application must wait until all pending `Read()` and `Write()`
* operations have completed before calling `Finish()`.
*/
virtual future<Status> Finish() = 0;
/**
* Return the request metadata.
*
* Request metadata is useful for troubleshooting, but may be relatively
* expensive to extract. Application developers should avoid this function in
* the critical path.
*
* @note Only call this function once, and only after `Finish()` completes.
*/
virtual RpcMetadata GetRequestMetadata() const { return {}; }
};
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
} // namespace cloud
} // namespace google
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_ASYNC_STREAMING_READ_WRITE_RPC_H