Uses of Interface
kong.unirest.HttpRequest
-
Packages that use HttpRequest Package Description kong.unirest kong.unirest.java -
-
Uses of HttpRequest in kong.unirest
Classes in kong.unirest with type parameters of type HttpRequest Modifier and Type Interface Description interfaceHttpRequest<R extends HttpRequest>The primary request builder used to create a request.Subinterfaces of HttpRequest in kong.unirest Modifier and Type Interface Description interfaceGetRequestinterfaceHttpRequestWithBodyA request Builder for POST and PUT operations with a body.interfaceJsonPatchRequestinterfaceMultipartBodyRepresents a multi-part body builder for a request.interfaceRequestBodyEntityMethods in kong.unirest with parameters of type HttpRequest Modifier and Type Method Description Cache.KeyCache.KeyGenerator. apply(HttpRequest request, Boolean isAsync, Class<?> responseType)A function to generate a cache keydefault voidInterceptor. onRequest(HttpRequest<?> request, Config config)Called just before a request.<T> HttpResponse<T>Client. request(HttpRequest request, Function<RawResponse,HttpResponse<T>> transformer, Class<?> resultType)Make a request<T> CompletableFuture<HttpResponse<T>>Client. request(HttpRequest request, Function<RawResponse,HttpResponse<T>> transformer, CompletableFuture<HttpResponse<T>> callback, Class<?> resultType)Make a Async requestMethod parameters in kong.unirest with type arguments of type HttpRequest Modifier and Type Method Description <T> PagedList<T>HttpRequest. asPaged(Function<HttpRequest,HttpResponse> mappingFunction, Function<HttpResponse<T>,String> linkExtractor)Allows for following paging links common in many APIs. -
Uses of HttpRequest in kong.unirest.java
Methods in kong.unirest.java with parameters of type HttpRequest Modifier and Type Method Description <T> HttpResponse<T>JavaClient. request(HttpRequest request, Function<RawResponse,HttpResponse<T>> transformer, Class<?> resultType)<T> CompletableFuture<HttpResponse<T>>JavaClient. request(HttpRequest request, Function<RawResponse,HttpResponse<T>> transformer, CompletableFuture<HttpResponse<T>> callback, Class<?> resultType)
-