/* * Copyright 2010 Ning, Inc. * * This program is licensed to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ package org.asynchttpclient; import io.netty.handler.codec.http.HttpHeaders; /** * An asynchronous handler or callback which gets invoked as soon as some data is available when * processing an asynchronous response. * <br> * Callback methods get invoked in the following order: * <ol> * <li>{@link #onStatusReceived(HttpResponseStatus)},</li> * <li>{@link #onHeadersReceived(HttpHeaders)},</li> * <li>{@link #onBodyPartReceived(HttpResponseBodyPart)}, which could be invoked multiple times,</li> * <li>{@link #onTrailingHeadersReceived(HttpHeaders)}, which is only invoked if trailing HTTP headers are received</li> * <li>{@link #onCompleted()}, once the response has been fully read.</li> * </ol> * <br> * Returning a {@link AsyncHandler.State#ABORT} from any of those callback methods will interrupt asynchronous response * processing, after that only {@link #onCompleted()} is going to be called. * <br> * AsyncHandler aren't thread safe, hence you should avoid re-using the same instance when doing concurrent requests. * As an example, the following may produce unexpected results: * <blockquote><pre> * AsyncHandler ah = new AsyncHandler() {....}; * AsyncHttpClient client = new AsyncHttpClient(); * client.prepareGet("http://...").execute(ah); * client.prepareGet("http://...").execute(ah); * </pre></blockquote> * It is recommended to create a new instance instead. * * Do NOT perform any blocking operation in there, typically trying to send another request and call get() on its future. * There's a chance you might end up in a dead lock. * If you really to perform blocking operation, executed it in a different dedicated thread pool. * * @param <T> Type of object returned by the {@link java.util.concurrent.Future#get} */ public interface AsyncHandler<T> { enum State { /** * Stop the processing. */ ABORT, /** * Continue the processing */ CONTINUE } /** * Invoked when an unexpected exception occurs during the processing of the response. The exception may have been * produced by implementation of onXXXReceived method invocation. * * @param t a {@link Throwable} */ void onThrowable(Throwable t); /** * Invoked as soon as some response body part are received. Could be invoked many times. * Beware that, depending on the provider (Netty) this can be notified with empty body parts. * * @param bodyPart response's body part. * @return a {@link State} telling to CONTINUE or ABORT the current processing. Aborting will also close the connection. * @throws Exception if something wrong happens */ State onBodyPartReceived(HttpResponseBodyPart bodyPart) throws Exception; /** * Invoked as soon as the HTTP status line has been received * * @param responseStatus the status code and test of the response * @return a {@link State} telling to CONTINUE or ABORT the current processing. * @throws Exception if something wrong happens */ State onStatusReceived(HttpResponseStatus responseStatus) throws Exception; /** * Invoked as soon as the HTTP headers have been received. * * @param headers the HTTP headers. * @return a {@link State} telling to CONTINUE or ABORT the current processing. * @throws Exception if something wrong happens */ State onHeadersReceived(HttpHeaders headers) throws Exception; /** * Invoked when trailing headers have been received. * @param headers the trailing HTTP headers. * @return a {@link State} telling to CONTINUE or ABORT the current processing. * @throws Exception if something wrong happens */ default State onTrailingHeadersReceived(HttpHeaders headers) throws Exception { return State.CONTINUE; } /** * Invoked once the HTTP response processing is finished. * <br> * Gets always invoked as last callback method. * * @return T Value that will be returned by the associated {@link java.util.concurrent.Future} * @throws Exception if something wrong happens */ T onCompleted() throws Exception; }