Example usage for org.apache.http.nio NHttpServerEventHandler interface-usage

List of usage examples for org.apache.http.nio NHttpServerEventHandler interface-usage

Introduction

In this page you can find the example usage for org.apache.http.nio NHttpServerEventHandler interface-usage.

Usage

From source file org.apache.synapse.transport.utils.logging.LoggingServerEventHandler.java

/**
 * A decorator (wrapper) for NHttpServerEventHandler instances. This decorator
 * logs additional debug information regarding each of the events triggered on the
 * actual NHttpServerEventHandler instance. Most events are logged 'before' they are
 * dispatched to the wrapped NHttpServerEventHandler, but this implementation does
 * not modify the event arguments by any means. In that sense this decorator is

From source file org.siddhiesb.transport.http.conn.LoggingNHttpServiceHandler.java

/**
 * Decorator class intended to transparently extend an {@link org.apache.http.nio.NHttpServerEventHandler}
 * with basic event logging capabilities using Commons Logging. 
 */
class LoggingNHttpServiceHandler implements NHttpServerEventHandler {

From source file org.apache.synapse.transport.http.conn.LoggingNHttpServiceHandler.java

/**
 * Decorator class intended to transparently extend an {@link NHttpServerEventHandler}
 * with basic event logging capabilities using Commons Logging. 
 */
class LoggingNHttpServiceHandler implements NHttpServerEventHandler {

From source file org.siddhiesb.transport.passthru.SourceHandler.java

/**
 * This is the class where transport interacts with the client. This class
 * receives events for a particular connection. These events give information
 * about the message and its various states.
 */
public class SourceHandler implements NHttpServerEventHandler {

From source file org.apache.synapse.transport.passthru.SourceHandler.java

    /**
 *  Copyright (c) 2009, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.

From source file org.apache.synapse.transport.nhttp.ServerHandler.java

/**
 * The server connection handler. An instance of this class is used by each IOReactor, to
 * process every connection. Hence this class should not store any data related to a single
 * connection - as this is being shared.
 */
public class ServerHandler implements NHttpServerEventHandler {