public interface Transport
| Modifier and Type | Method and Description |
|---|---|
Response |
send(Request request)
Sends client request and returns response in sync manner.
|
java.util.concurrent.CompletableFuture<Response> |
sendAsync(Request request)
Sends client request and returns promise/future of a response.
|