Package com.google.api.gax.rpc
Interface LongRunningClient
-
public interface LongRunningClient
Implementation-agnostic interface for managing long-running operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UnaryCallable<String,Void>
cancelOperationCallable()
Returns aUnaryCallable
which can issue calls to cancel an operation.UnaryCallable<String,Void>
deleteOperationCallable()
Returns aUnaryCallable
which can issue calls to delete an operation.UnaryCallable<String,OperationSnapshot>
getOperationCallable()
Returns aUnaryCallable
which can issue calls to get the latest state of an operation.
-
-
-
Method Detail
-
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.
-
-