/* * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * 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. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * */ package org.apache.http.nio; import java.io.IOException; import org.apache.http.HttpException; /** * Abstract server-side HTTP event handler. * * @since 4.2 */ public interface NHttpServerEventHandler { /** * Triggered when a new incoming connection is created. * * @param conn new incoming connection HTTP connection. */ void connected( NHttpServerConnection conn) throws IOException, HttpException; /** * Triggered when a new HTTP request is received. The connection * passed as a parameter to this method is guaranteed to return * a valid HTTP request object. * <p> * If the request received encloses a request entity this method will * be followed a series of * {@link #inputReady(NHttpServerConnection, ContentDecoder)} calls * to transfer the request content. * * @see NHttpServerConnection * * @param conn HTTP connection that contains a new HTTP request */ void requestReceived( NHttpServerConnection conn) throws IOException, HttpException; /** * Triggered when the underlying channel is ready for reading a * new portion of the request entity through the corresponding * content decoder. * <p> * If the content consumer is unable to process incoming content, * input event notifications can be temporarily suspended using * {@link IOControl} interface (super interface of {@link NHttpServerConnection}). * <p> * Please note that the {@link NHttpServerConnection} and {@link ContentDecoder} * objects are not thread-safe and should only be used within the context of * this method call. The {@link IOControl} object can be shared and used on other * thread to resume input event notifications when the handler is capable of * processing more content. * * @see NHttpServerConnection * @see ContentDecoder * @see IOControl * * @param conn HTTP connection that can produce a new portion of the * incoming request content. * @param decoder The content decoder to use to read content. */ void inputReady( NHttpServerConnection conn, ContentDecoder decoder) throws IOException, HttpException; /** * Triggered when the connection is ready to accept a new HTTP response. * The protocol handler does not have to submit a response if it is not * ready. * * @see NHttpServerConnection * * @param conn HTTP connection that contains an HTTP response */ void responseReady( NHttpServerConnection conn) throws IOException, HttpException; /** * Triggered when the underlying channel is ready for writing a * next portion of the response entity through the corresponding * content encoder. * <p> * If the content producer is unable to generate outgoing content, * output event notifications can be temporarily suspended using * {@link IOControl} interface (super interface of {@link NHttpServerConnection}). * <p> * Please note that the {@link NHttpServerConnection} and {@link ContentEncoder} * objects are not thread-safe and should only be used within the context of * this method call. The {@link IOControl} object can be shared and used on other * thread to resume output event notifications when more content is made available. * * @see NHttpServerConnection * @see ContentEncoder * @see IOControl * * @param conn HTTP connection that can accommodate a new portion * of the outgoing response content. * @param encoder The content encoder to use to write content. */ void outputReady( NHttpServerConnection conn, ContentEncoder encoder) throws IOException, HttpException; /** * Triggered when the connection is closed by the opposite end point * (half-closed). * * @param conn half-closed HTTP connection. */ void endOfInput( NHttpServerConnection conn) throws IOException; /** * Triggered when no input is detected on this connection over the * maximum period of inactivity. * * @param conn HTTP connection that caused timeout condition. */ void timeout( NHttpServerConnection conn) throws IOException; /** * Triggered when the connection is closed. * * @param conn closed HTTP connection. */ void closed(NHttpServerConnection conn); /** * Triggered if an error occurs during the HTTP exchange. * * @param conn HTTP connection that caused an I/O error * @param ex exception */ void exception(NHttpServerConnection conn, Exception ex); }