Uses of Class
com.mashape.unirest.http.HttpResponse
-
Packages that use HttpResponse Package Description com.mashape.unirest.http com.mashape.unirest.http.async com.mashape.unirest.request -
-
Uses of HttpResponse in com.mashape.unirest.http
Methods in com.mashape.unirest.http that return HttpResponse Modifier and Type Method Description static <T> HttpResponse<T>HttpClientHelper. request(HttpRequest request, Class<T> responseClass)static <T> HttpResponse<T>HttpClientHelper. requestStream(HttpRequest request, Class<T> responseClass)Methods in com.mashape.unirest.http that return types with arguments of type HttpResponse Modifier and Type Method Description static <T> Future<HttpResponse<T>>HttpClientHelper. requestAsync(HttpRequest request, Class<T> responseClass, Callback<T> callback) -
Uses of HttpResponse in com.mashape.unirest.http.async
Methods in com.mashape.unirest.http.async with parameters of type HttpResponse Modifier and Type Method Description voidCallback. completed(HttpResponse<T> response) -
Uses of HttpResponse in com.mashape.unirest.request
Methods in com.mashape.unirest.request that return HttpResponse Modifier and Type Method Description HttpResponse<InputStream>BaseRequest. asBinary()HttpResponse<String>BaseRequest. asString()Methods in com.mashape.unirest.request that return types with arguments of type HttpResponse Modifier and Type Method Description Future<HttpResponse<InputStream>>BaseRequest. asBinaryAsync()Future<HttpResponse<InputStream>>BaseRequest. asBinaryAsync(Callback<InputStream> callback)Future<HttpResponse<String>>BaseRequest. asStringAsync()Future<HttpResponse<String>>BaseRequest. asStringAsync(Callback<String> callback)
-