pub struct OperationsClient<T> { /* private fields */ }
Expand description
Manages long-running operations with an API service.
When an API method normally takes long time to complete, it can be designed
to return [Operation][google.longrunning.Operation] to the client, and the
client can use this interface to receive the real response asynchronously by
polling the operation resource, or pass the operation resource to another API
(such as Pub/Sub API) to receive the response. Any API service that returns
long-running operations should implement the Operations
interface so
developers can have a consistent client experience.
Implementations§
Source§impl<T> OperationsClient<T>where
T: GrpcService<UnsyncBoxBody<Bytes, Status>>,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::Error: Into<Box<dyn Error + Sync + Send>>,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody: Body<Data = Bytes> + Send + 'static,
<<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody as Body>::Error: Into<Box<dyn Error + Sync + Send>> + Send,
impl<T> OperationsClient<T>where
T: GrpcService<UnsyncBoxBody<Bytes, Status>>,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::Error: Into<Box<dyn Error + Sync + Send>>,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody: Body<Data = Bytes> + Send + 'static,
<<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody as Body>::Error: Into<Box<dyn Error + Sync + Send>> + Send,
pub fn new(inner: T) -> OperationsClient<T>
pub fn with_origin(inner: T, origin: Uri) -> OperationsClient<T>
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> OperationsClient<InterceptedService<T, F>>where
F: Interceptor,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody: Default,
T: Service<Request<UnsyncBoxBody<Bytes, Status>>, Response = Response<<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody>>,
<T as Service<Request<UnsyncBoxBody<Bytes, Status>>>>::Error: Into<Box<dyn Error + Sync + Send>> + Send + Sync,
Sourcepub fn send_compressed(
self,
encoding: CompressionEncoding,
) -> OperationsClient<T>
pub fn send_compressed( self, encoding: CompressionEncoding, ) -> OperationsClient<T>
Compress requests with the given encoding.
This requires the server to support it otherwise it might respond with an error.
Sourcepub fn accept_compressed(
self,
encoding: CompressionEncoding,
) -> OperationsClient<T>
pub fn accept_compressed( self, encoding: CompressionEncoding, ) -> OperationsClient<T>
Enable decompressing responses.
Sourcepub fn max_decoding_message_size(self, limit: usize) -> OperationsClient<T>
pub fn max_decoding_message_size(self, limit: usize) -> OperationsClient<T>
Limits the maximum size of a decoded message.
Default: 4MB
Sourcepub fn max_encoding_message_size(self, limit: usize) -> OperationsClient<T>
pub fn max_encoding_message_size(self, limit: usize) -> OperationsClient<T>
Limits the maximum size of an encoded message.
Default: usize::MAX
Sourcepub async fn list_operations(
&mut self,
request: impl IntoRequest<ListOperationsRequest>,
) -> Result<Response<ListOperationsResponse>, Status>
pub async fn list_operations( &mut self, request: impl IntoRequest<ListOperationsRequest>, ) -> Result<Response<ListOperationsResponse>, Status>
Lists operations that match the specified filter in the request. If the
server doesn’t support this method, it returns UNIMPLEMENTED
.
Sourcepub async fn get_operation(
&mut self,
request: impl IntoRequest<GetOperationRequest>,
) -> Result<Response<Operation>, Status>
pub async fn get_operation( &mut self, request: impl IntoRequest<GetOperationRequest>, ) -> Result<Response<Operation>, Status>
Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
Sourcepub async fn delete_operation(
&mut self,
request: impl IntoRequest<DeleteOperationRequest>,
) -> Result<Response<()>, Status>
pub async fn delete_operation( &mut self, request: impl IntoRequest<DeleteOperationRequest>, ) -> Result<Response<()>, Status>
Deletes a long-running operation. This method indicates that the client is
no longer interested in the operation result. It does not cancel the
operation. If the server doesn’t support this method, it returns
google.rpc.Code.UNIMPLEMENTED
.
Sourcepub async fn cancel_operation(
&mut self,
request: impl IntoRequest<CancelOperationRequest>,
) -> Result<Response<()>, Status>
pub async fn cancel_operation( &mut self, request: impl IntoRequest<CancelOperationRequest>, ) -> Result<Response<()>, Status>
Starts asynchronous cancellation on a long-running operation. The server
makes a best effort to cancel the operation, but success is not
guaranteed. If the server doesn’t support this method, it returns
google.rpc.Code.UNIMPLEMENTED
. Clients can use
[Operations.GetOperation][google.longrunning.Operations.GetOperation] or
other methods to check whether the cancellation succeeded or whether the
operation completed despite cancellation. On successful cancellation,
the operation is not deleted; instead, it becomes an operation with
an [Operation.error][google.longrunning.Operation.error] value with a
[google.rpc.Status.code][google.rpc.Status.code] of 1
, corresponding to
Code.CANCELLED
.
Sourcepub async fn wait_operation(
&mut self,
request: impl IntoRequest<WaitOperationRequest>,
) -> Result<Response<Operation>, Status>
pub async fn wait_operation( &mut self, request: impl IntoRequest<WaitOperationRequest>, ) -> Result<Response<Operation>, Status>
Waits until the specified long-running operation is done or reaches at most
a specified timeout, returning the latest state. If the operation is
already done, the latest state is immediately returned. If the timeout
specified is greater than the default HTTP/RPC timeout, the HTTP/RPC
timeout is used. If the server does not support this method, it returns
google.rpc.Code.UNIMPLEMENTED
.
Note that this method is on a best-effort basis. It may return the latest
state before the specified timeout (including immediately), meaning even an
immediate response is no guarantee that the operation is done.
Trait Implementations§
Source§impl<T> Clone for OperationsClient<T>where
T: Clone,
impl<T> Clone for OperationsClient<T>where
T: Clone,
Source§fn clone(&self) -> OperationsClient<T>
fn clone(&self) -> OperationsClient<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<T> !Freeze for OperationsClient<T>
impl<T> RefUnwindSafe for OperationsClient<T>where
T: RefUnwindSafe,
impl<T> Send for OperationsClient<T>where
T: Send,
impl<T> Sync for OperationsClient<T>where
T: Sync,
impl<T> Unpin for OperationsClient<T>where
T: Unpin,
impl<T> UnwindSafe for OperationsClient<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request