jio.http.client.HttpLambda Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jio-http Show documentation
Show all versions of jio-http Show documentation
Functional and reactive http client in Java
package jio.http.client;
import jio.Lambda;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
/**
* Represents a lambda function that takes an HTTP request builder and returns an HTTP response.
*
* @param The type of the response body.
*/
public interface HttpLambda extends Lambda> {
}