Executable<T> Interface
Type Parameters
- T
the type of result produced by the execution.
Implements
public interface Executable
extends Indexable
The base interface for all template interfaces that support execute operations.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract T |
execute()
Execute the request. |
abstract rx.Observable<T> |
executeAsync()
Execute the request asynchronously. |
abstract com.microsoft.rest.ServiceFuture<T> |
executeAsync(ServiceCallback<T> callback)
Execute the request asynchronously. |
Method Details
execute
public abstract T execute()
Execute the request.
Returns:
execution result object
executeAsync
public abstract Observable
Execute the request asynchronously.
Returns:
the handle to the REST call
executeAsync
public abstract ServiceFuture
Execute the request asynchronously.
Parameters:
callback
- the callback for success and failure
Returns:
the handle to the REST call
Applies to
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.
Azure SDK for Java