All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.evolv.HttpClient Maven / Gradle / Ivy

There is a newer version: 0.7.1
Show newest version
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