public interface

NHttpServerIOTarget

implements NHttpServerConnection
org.apache.http.nio.NHttpServerIOTarget
Known Indirect Subclasses

Class Overview

Extended version of the NHttpServerConnection used by IOEventDispatch implementations to inform server-side connection objects of I/O events.

Summary

[Expand]
Inherited Constants
From interface org.apache.http.nio.NHttpConnection
Public Methods
abstract void consumeInput(NHttpServiceHandler handler)
Triggered when the connection is ready to consume input.
abstract void produceOutput(NHttpServiceHandler handler)
Triggered when the connection is ready to produce output.
[Expand]
Inherited Methods
From interface org.apache.http.HttpConnection
From interface org.apache.http.nio.IOControl
From interface org.apache.http.nio.NHttpConnection
From interface org.apache.http.nio.NHttpServerConnection

Public Methods

public abstract void consumeInput (NHttpServiceHandler handler)

Triggered when the connection is ready to consume input.

Parameters
handler the server protocol handler.

public abstract void produceOutput (NHttpServiceHandler handler)

Triggered when the connection is ready to produce output.

Parameters
handler the server protocol handler.