static ServiceFuture<Void> |
ServiceFuture.fromBody(rx.Completable completable,
ServiceCallback<Void> callback) |
Creates a ServiceFuture from an Completable object and a callback.
|
static <T> ServiceFuture<T> |
ServiceFuture.fromBody(rx.Observable<T> observable,
ServiceCallback<T> callback) |
Creates a ServiceFuture from an observable object and a callback.
|
static <T,V> ServiceFuture<T> |
ServiceFuture.fromHeaderResponse(rx.Observable<ServiceResponseWithHeaders<T,V>> observable,
ServiceCallback<T> callback) |
Creates a ServiceCall from an observable and a callback for a header response.
|
static <T> ServiceFuture<T> |
ServiceFuture.fromResponse(rx.Observable<ServiceResponse<T>> observable) |
Creates a ServiceCall from an observable object.
|
static <T> ServiceFuture<T> |
ServiceFuture.fromResponse(rx.Observable<ServiceResponse<T>> observable,
ServiceCallback<T> callback) |
Creates a ServiceCall from an observable object and a callback.
|