本文整理汇总了Java中org.apache.http.nio.protocol.HttpAsyncResponseConsumer类的典型用法代码示例。如果您正苦于以下问题:Java HttpAsyncResponseConsumer类的具体用法?Java HttpAsyncResponseConsumer怎么用?Java HttpAsyncResponseConsumer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
HttpAsyncResponseConsumer类属于org.apache.http.nio.protocol包,在下文中一共展示了HttpAsyncResponseConsumer类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testTooLargeResponse
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
@SuppressWarnings({ "unchecked", "rawtypes" })
public void testTooLargeResponse() throws Exception {
ContentTooLongException tooLong = new ContentTooLongException("too long!");
CloseableHttpAsyncClient httpClient = mock(CloseableHttpAsyncClient.class);
when(httpClient.<HttpResponse>execute(any(HttpAsyncRequestProducer.class), any(HttpAsyncResponseConsumer.class),
any(HttpClientContext.class), any(FutureCallback.class))).then(new Answer<Future<HttpResponse>>() {
@Override
public Future<HttpResponse> answer(InvocationOnMock invocationOnMock) throws Throwable {
HeapBufferedAsyncResponseConsumer consumer = (HeapBufferedAsyncResponseConsumer) invocationOnMock.getArguments()[1];
FutureCallback callback = (FutureCallback) invocationOnMock.getArguments()[3];
assertEquals(new ByteSizeValue(100, ByteSizeUnit.MB).bytesAsInt(), consumer.getBufferLimit());
callback.failed(tooLong);
return null;
}
});
RemoteScrollableHitSource source = sourceWithMockedClient(true, httpClient);
AtomicBoolean called = new AtomicBoolean();
Consumer<Response> checkResponse = r -> called.set(true);
Throwable e = expectThrows(RuntimeException.class,
() -> source.doStartNextScroll(FAKE_SCROLL_ID, timeValueMillis(0), checkResponse));
// Unwrap the some artifacts from the test
while (e.getMessage().equals("failed")) {
e = e.getCause();
}
// This next exception is what the user sees
assertEquals("Remote responded with a chunk that was too large. Use a smaller batch size.", e.getMessage());
// And that exception is reported as being caused by the underlying exception returned by the client
assertSame(tooLong, e.getCause());
assertFalse(called.get());
}
示例2: testInternalHttpRequest
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
/**
* Verifies the content of the {@link HttpRequest} that's internally created and passed through to the http client
*/
@SuppressWarnings("unchecked")
public void testInternalHttpRequest() throws Exception {
ArgumentCaptor<HttpAsyncRequestProducer> requestArgumentCaptor = ArgumentCaptor.forClass(HttpAsyncRequestProducer.class);
int times = 0;
for (String httpMethod : getHttpMethods()) {
HttpUriRequest expectedRequest = performRandomRequest(httpMethod);
verify(httpClient, times(++times)).<HttpResponse>execute(requestArgumentCaptor.capture(),
any(HttpAsyncResponseConsumer.class), any(HttpClientContext.class), any(FutureCallback.class));
HttpUriRequest actualRequest = (HttpUriRequest)requestArgumentCaptor.getValue().generateRequest();
assertEquals(expectedRequest.getURI(), actualRequest.getURI());
assertEquals(expectedRequest.getClass(), actualRequest.getClass());
assertArrayEquals(expectedRequest.getAllHeaders(), actualRequest.getAllHeaders());
if (expectedRequest instanceof HttpEntityEnclosingRequest) {
HttpEntity expectedEntity = ((HttpEntityEnclosingRequest) expectedRequest).getEntity();
if (expectedEntity != null) {
HttpEntity actualEntity = ((HttpEntityEnclosingRequest) actualRequest).getEntity();
assertEquals(EntityUtils.toString(expectedEntity), EntityUtils.toString(actualEntity));
}
}
}
}
示例3: createRestClient
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
@Before
@SuppressWarnings("unchecked")
public void createRestClient() throws IOException {
CloseableHttpAsyncClient httpClient = mock(CloseableHttpAsyncClient.class);
when(httpClient.<HttpResponse>execute(any(HttpAsyncRequestProducer.class), any(HttpAsyncResponseConsumer.class),
any(HttpClientContext.class), any(FutureCallback.class))).thenAnswer(new Answer<Future<HttpResponse>>() {
@Override
public Future<HttpResponse> answer(InvocationOnMock invocationOnMock) throws Throwable {
HttpAsyncRequestProducer requestProducer = (HttpAsyncRequestProducer) invocationOnMock.getArguments()[0];
HttpUriRequest request = (HttpUriRequest)requestProducer.generateRequest();
HttpHost httpHost = requestProducer.getTarget();
HttpClientContext context = (HttpClientContext) invocationOnMock.getArguments()[2];
assertThat(context.getAuthCache().get(httpHost), instanceOf(BasicScheme.class));
FutureCallback<HttpResponse> futureCallback = (FutureCallback<HttpResponse>) invocationOnMock.getArguments()[3];
//return the desired status code or exception depending on the path
if (request.getURI().getPath().equals("/soe")) {
futureCallback.failed(new SocketTimeoutException(httpHost.toString()));
} else if (request.getURI().getPath().equals("/coe")) {
futureCallback.failed(new ConnectTimeoutException(httpHost.toString()));
} else if (request.getURI().getPath().equals("/ioe")) {
futureCallback.failed(new IOException(httpHost.toString()));
} else {
int statusCode = Integer.parseInt(request.getURI().getPath().substring(1));
StatusLine statusLine = new BasicStatusLine(new ProtocolVersion("http", 1, 1), statusCode, "");
futureCallback.completed(new BasicHttpResponse(statusLine));
}
return null;
}
});
int numHosts = RandomNumbers.randomIntBetween(getRandom(), 2, 5);
httpHosts = new HttpHost[numHosts];
for (int i = 0; i < numHosts; i++) {
httpHosts[i] = new HttpHost("localhost", 9200 + i);
}
failureListener = new HostsTrackingFailureListener();
restClient = new RestClient(httpClient, 10000, new Header[0], httpHosts, null, failureListener);
}
示例4: makeConsumers
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
@SuppressWarnings("rawtypes")
public List<HttpAsyncResponseConsumer> makeConsumers(List<HttpAsyncResponseConsumer> list) {
List<HttpAsyncResponseConsumer> ls = new ArrayList<HttpAsyncResponseConsumer>();
for (HttpAsyncResponseConsumer r : list) {
ls.add(makeConsumer(r));
}
return ls;
}
示例5: executeRequest
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
private Future<Response> executeRequest(Request request, HttpRequestBase method, HttpContext context, HTTPCallback<HttpResponse> callback) {
if (request.isDownload()) {
HttpAsyncRequestProducer producer = HttpAsyncMethods.create(method);
HttpAsyncResponseConsumer<HttpResponse> consumer = new BasicAsyncResponseConsumer();
return executeRequest(producer, consumer, context, callback);
} else
return executeRequest(method, context, callback);
}
示例6: executeAsync
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
private <T> Future<T> executeAsync(HttpUriRequest request, HttpAsyncResponseConsumer<T> consumer) {
if(this.auth != null) {
this.auth.authenticateRequest(request);
}
request.addHeader("User-Agent", HttpClient.userAgent);
HttpHost target = new HttpHost(request.getURI().getHost(), request.getURI().getPort());
return client.execute(new BasicAsyncRequestProducer(target, request), consumer, null);
}
示例7: createHttpAsyncResponseConsumer
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
@Override
public HttpAsyncResponseConsumer<HttpResponse> createHttpAsyncResponseConsumer() {
return new HeapBufferedAsyncResponseConsumer(bufferLimit);
}
示例8: get
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
public <T> Future<T> get(String path, HttpAsyncResponseConsumer<T> consumer) {
final HttpGet request = new HttpGet(getUrl(path));
return this.executeAsync(request, consumer);
}
示例9: post
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
public <T> Future<T> post(String path, HttpEntity data, HttpAsyncResponseConsumer<T> consumer) {
return post(getUrl(path), data, consumer, null);
}
示例10: put
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
public <T> Future<T> put(String path, HttpEntity data, HttpAsyncResponseConsumer<T> consumer) {
final HttpPut request = new HttpPut(getUrl(path));
request.setEntity(data);
return this.executeAsync(request, consumer);
}
示例11: delete
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
public <T> Future<T> delete(String path, HttpAsyncResponseConsumer<T> consumer) {
final HttpDelete request = new HttpDelete(getUrl(path));
return executeAsync(request, consumer);
}
示例12: head
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
public <T> Future<T> head(String path, HttpAsyncResponseConsumer<T> consumer) {
final HttpHead request = new HttpHead(getUrl(path));
return executeAsync(request, consumer);
}
示例13: execute
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
@Override
public Future<HttpResponse> execute(final HttpAsyncClient httpClient) throws FileNotFoundException {
final HttpAsyncResponseConsumer<HttpResponse> consumer = new BasicAsyncResponseConsumer();
final HttpAsyncRequestProducer producer = this.getProducer();
return httpClient.execute(producer, consumer, null);
}
示例14: retryOperation
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
/**
* Retries given HTTP request. Called internally only, from the HttpFuture
*
* @param httpUriRequest the HttpUriRequest to retry
* @param responseConsumer the response consumer
* @return the resulting Future<HttpResponse> instance
*/
Future<HttpResponse> retryOperation( HttpUriRequest httpUriRequest, HttpAsyncResponseConsumer<HttpResponse> responseConsumer ) {
return responseConsumer == null ? asyncClient.execute( httpUriRequest, null ) : asyncClient.execute( HttpAsyncMethods.create( httpUriRequest ), responseConsumer, null, null );
}
示例15: HttpFuture
import org.apache.http.nio.protocol.HttpAsyncResponseConsumer; //导入依赖的package包/类
/**
* Instantiates a new Http future.
*
* @param asyncHttpService async http service instance
* @param httpUriRequest the http uri request
* @param responseConsumer the response consumer
* @param httpResponseFuture the http response future
* @param body the body
*/
public HttpFuture( AsyncHttpService asyncHttpService, HttpUriRequest httpUriRequest, HttpAsyncResponseConsumer<HttpResponse> responseConsumer, Future<HttpResponse> httpResponseFuture, String body ) {
this( asyncHttpService, httpUriRequest, httpResponseFuture, body );
this.responseConsumer = responseConsumer;
}