Uses of Interface
com.atlassian.bitbucket.jenkins.internal.client.HttpRequestExecutor.ResponseConsumer
- 
Packages that use HttpRequestExecutor.ResponseConsumer Package Description com.atlassian.bitbucket.jenkins.internal.client Add package level annotations to indicate everything is non-null by default.com.atlassian.bitbucket.jenkins.internal.http Add package level annotations to indicate everything is non-null by default. - 
- 
Uses of HttpRequestExecutor.ResponseConsumer in com.atlassian.bitbucket.jenkins.internal.client
Fields in com.atlassian.bitbucket.jenkins.internal.client declared as HttpRequestExecutor.ResponseConsumer Modifier and Type Field Description static HttpRequestExecutor.ResponseConsumer<Void>HttpRequestExecutor.ResponseConsumer. EMPTY_RESPONSEMethods in com.atlassian.bitbucket.jenkins.internal.client with parameters of type HttpRequestExecutor.ResponseConsumer Modifier and Type Method Description <T> THttpRequestExecutor. executeGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)Executes a Get call to a given URL.<T> THttpRequestExecutor. executePost(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)Executes a POST with a given URL and request payload, with any custom headers.<T> THttpRequestExecutor. executePut(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)Executes a PUT with a given URL and request payload.InputStreamHttpRequestExecutor. executeStreamingGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<InputStream> consumer, RequestConfiguration... additionalConfig)Executes a streaming get call to a given URL. - 
Uses of HttpRequestExecutor.ResponseConsumer in com.atlassian.bitbucket.jenkins.internal.http
Methods in com.atlassian.bitbucket.jenkins.internal.http with parameters of type HttpRequestExecutor.ResponseConsumer Modifier and Type Method Description <T> THttpRequestExecutorImpl. executeGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)<T> THttpRequestExecutorImpl. executePost(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)<T> THttpRequestExecutorImpl. executePut(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)InputStreamHttpRequestExecutorImpl. executeStreamingGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<InputStream> consumer, RequestConfiguration... additionalConfig) 
 -