ai.evolv.HttpClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ascend-sdk Show documentation
Show all versions of ascend-sdk Show documentation
SDK to interact with the Ascend product.
package ai.evolv;
import java.util.concurrent.CompletableFuture;
public interface HttpClient {
/**
* Performs a GET request using the provided url.
*
* This call is asynchronous, the request is sent and a completable future
* is returned. The future is completed when the result of the request returns.
* The timeout of the request is determined in the implementation of the
* HttpClient.
*
* @param url a valid url representing a call to the Participant API.
* @return a response future
*/
CompletableFuture get(String url);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy