- Type Parameters:
E
- The type of response
public interface HttpCall<E>
Allows for executing the request asynchronously or synchronously.
-
Method Details
-
execute
E execute()Execute the request returning the result. -
async
CompletableFuture<E> async()Execute the request asynchronously.
-