@@ -103,8 +103,8 @@ pub mod health_client {
103
103
self . inner = self . inner . accept_compressed ( encoding) ;
104
104
self
105
105
}
106
- /// If the requested service is unknown, the call will fail with status
107
- /// NOT_FOUND.
106
+ ///If the requested service is unknown, the call will fail with status
107
+ ///NOT_FOUND.
108
108
pub async fn check (
109
109
& mut self ,
110
110
request : impl tonic:: IntoRequest < super :: HealthCheckRequest > ,
@@ -124,21 +124,21 @@ pub mod health_client {
124
124
) ;
125
125
self . inner . unary ( request. into_request ( ) , path, codec) . await
126
126
}
127
- /// Performs a watch for the serving status of the requested service.
128
- /// The server will immediately send back a message indicating the current
129
- /// serving status. It will then subsequently send a new message whenever
130
- /// the service's serving status changes.
127
+ ///Performs a watch for the serving status of the requested service.
128
+ ///The server will immediately send back a message indicating the current
129
+ ///serving status. It will then subsequently send a new message whenever
130
+ ///the service's serving status changes.
131
131
///
132
- /// If the requested service is unknown when the call is received, the
133
- /// server will send a message setting the serving status to
134
- /// SERVICE_UNKNOWN but will *not* terminate the call. If at some
135
- /// future point, the serving status of the service becomes known, the
136
- /// server will send a new message with the service's serving status.
132
+ ///If the requested service is unknown when the call is received, the
133
+ ///server will send a message setting the serving status to
134
+ ///SERVICE_UNKNOWN but will *not* terminate the call. If at some
135
+ ///future point, the serving status of the service becomes known, the
136
+ ///server will send a new message with the service's serving status.
137
137
///
138
- /// If the call terminates with status UNIMPLEMENTED, then clients
139
- /// should assume this method is not supported and should not retry the
140
- /// call. If the call terminates with any other status (including OK),
141
- /// clients should retry the call with appropriate exponential backoff.
138
+ ///If the call terminates with status UNIMPLEMENTED, then clients
139
+ ///should assume this method is not supported and should not retry the
140
+ ///call. If the call terminates with any other status (including OK),
141
+ ///clients should retry the call with appropriate exponential backoff.
142
142
pub async fn watch (
143
143
& mut self ,
144
144
request : impl tonic:: IntoRequest < super :: HealthCheckRequest > ,
@@ -170,8 +170,8 @@ pub mod health_server {
170
170
///Generated trait containing gRPC methods that should be implemented for use with HealthServer.
171
171
#[ async_trait]
172
172
pub trait Health : Send + Sync + ' static {
173
- /// If the requested service is unknown, the call will fail with status
174
- /// NOT_FOUND.
173
+ ///If the requested service is unknown, the call will fail with status
174
+ ///NOT_FOUND.
175
175
async fn check (
176
176
& self ,
177
177
request : tonic:: Request < super :: HealthCheckRequest > ,
@@ -182,21 +182,21 @@ pub mod health_server {
182
182
>
183
183
+ Send
184
184
+ ' static ;
185
- /// Performs a watch for the serving status of the requested service.
186
- /// The server will immediately send back a message indicating the current
187
- /// serving status. It will then subsequently send a new message whenever
188
- /// the service's serving status changes.
185
+ ///Performs a watch for the serving status of the requested service.
186
+ ///The server will immediately send back a message indicating the current
187
+ ///serving status. It will then subsequently send a new message whenever
188
+ ///the service's serving status changes.
189
189
///
190
- /// If the requested service is unknown when the call is received, the
191
- /// server will send a message setting the serving status to
192
- /// SERVICE_UNKNOWN but will *not* terminate the call. If at some
193
- /// future point, the serving status of the service becomes known, the
194
- /// server will send a new message with the service's serving status.
190
+ ///If the requested service is unknown when the call is received, the
191
+ ///server will send a message setting the serving status to
192
+ ///SERVICE_UNKNOWN but will *not* terminate the call. If at some
193
+ ///future point, the serving status of the service becomes known, the
194
+ ///server will send a new message with the service's serving status.
195
195
///
196
- /// If the call terminates with status UNIMPLEMENTED, then clients
197
- /// should assume this method is not supported and should not retry the
198
- /// call. If the call terminates with any other status (including OK),
199
- /// clients should retry the call with appropriate exponential backoff.
196
+ ///If the call terminates with status UNIMPLEMENTED, then clients
197
+ ///should assume this method is not supported and should not retry the
198
+ ///call. If the call terminates with any other status (including OK),
199
+ ///clients should retry the call with appropriate exponential backoff.
200
200
async fn watch (
201
201
& self ,
202
202
request : tonic:: Request < super :: HealthCheckRequest > ,
0 commit comments