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_RESPONSE
Methods in com.atlassian.bitbucket.jenkins.internal.client with parameters of type HttpRequestExecutor.ResponseConsumer Modifier and Type Method Description <T> T
HttpRequestExecutor. executeGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
Executes a Get call to a given URL.<T> T
HttpRequestExecutor. 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> T
HttpRequestExecutor. executePut(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
Executes a PUT with a given URL and request payload.InputStream
HttpRequestExecutor. 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> T
HttpRequestExecutorImpl. executeGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
<T> T
HttpRequestExecutorImpl. executePost(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
<T> T
HttpRequestExecutorImpl. executePut(okhttp3.HttpUrl url, String requestBodyAsJson, HttpRequestExecutor.ResponseConsumer<T> consumer, RequestConfiguration... additionalConfig)
InputStream
HttpRequestExecutorImpl. executeStreamingGet(okhttp3.HttpUrl url, HttpRequestExecutor.ResponseConsumer<InputStream> consumer, RequestConfiguration... additionalConfig)
-