Package com.google.api.gax.rpc
Interface LongRunningClient
public interface LongRunningClient
Implementation-agnostic interface for managing long-running operations.
-
Method Summary
Modifier and TypeMethodDescriptionReturns aUnaryCallable
which can issue calls to cancel an operation.Returns aUnaryCallable
which can issue calls to delete an operation.Returns aUnaryCallable
which can issue calls to get the latest state of an operation.
-
Method Details
-
getOperationCallable
UnaryCallable<String,OperationSnapshot> getOperationCallable()Returns aUnaryCallable
which can issue calls to get the latest state of an operation. -
cancelOperationCallable
UnaryCallable<String,Void> cancelOperationCallable()Returns aUnaryCallable
which can issue calls to cancel an operation. -
deleteOperationCallable
UnaryCallable<String,Void> deleteOperationCallable()Returns aUnaryCallable
which can issue calls to delete an operation.
-