@ChannelHandler.Sharable public class ExecutionHandler extends Object implements ChannelUpstreamHandler, ChannelDownstreamHandler, ExternalResourceReleasable
ChannelEvent to an Executor.
ExecutionHandler is often used when your ChannelHandler
performs a blocking operation that takes long time or accesses a resource
which is not CPU-bound business logic such as DB access. Running such
operations in a pipeline without an ExecutionHandler will result in
unwanted hiccup during I/O because an I/O thread cannot perform I/O until
your handler returns the control to the I/O thread.
In most cases, an ExecutionHandler is coupled with an
OrderedMemoryAwareThreadPoolExecutor because it guarantees the
correct event execution order and prevents an OutOfMemoryError
under load:
public class DatabaseGatewayPipelineFactory implementsPlease refer toChannelPipelineFactory{ private finalExecutionHandlerexecutionHandler; public DatabaseGatewayPipelineFactory(ExecutionHandlerexecutionHandler) { this.executionHandler = executionHandler; } publicChannelPipelinegetPipeline() { returnChannels.pipeline( new DatabaseGatewayProtocolEncoder(), new DatabaseGatewayProtocolDecoder(), executionHandler, // Must be shared new DatabaseQueryingHandler()); } } ... public static void main(String[] args) {ServerBootstrapbootstrap = ...; ...ExecutionHandlerexecutionHandler = newExecutionHandler( newOrderedMemoryAwareThreadPoolExecutor(16, 1048576, 1048576)) bootstrap.setPipelineFactory( new DatabaseGatewayPipelineFactory(executionHandler)); ... bootstrap.bind(...); ... while (!isServerReadyToShutDown()) { // ... wait ... } bootstrap.releaseExternalResources(); executionHandler.releaseExternalResources(); }
OrderedMemoryAwareThreadPoolExecutor for the
detailed information about how the event order is guaranteed.
ExecutionHandler to the pipeline.
Executor implementationOrderedMemoryAwareThreadPoolExecutor,
you can use other Executor implementations. However, you must note
that other Executor implementation might break your application
because they often do not maintain event execution order nor interact with
I/O threads to control the incoming traffic and avoid OutOfMemoryError.ChannelHandler.Sharable| Constructor and Description |
|---|
ExecutionHandler(Executor executor)
Creates a new instance with the specified
Executor. |
ExecutionHandler(Executor executor,
boolean handleDownstream)
Deprecated.
|
ExecutionHandler(Executor executor,
boolean handleDownstream,
boolean handleUpstream)
Creates a new instance with the specified
Executor. |
| Modifier and Type | Method and Description |
|---|---|
Executor |
getExecutor()
Returns the
Executor which was specified with the constructor. |
void |
handleDownstream(ChannelHandlerContext ctx,
ChannelEvent e)
Handles the specified downstream event.
|
protected boolean |
handleReadSuspend(ChannelHandlerContext ctx,
ChannelEvent e)
Handle suspended reads
|
void |
handleUpstream(ChannelHandlerContext context,
ChannelEvent e)
Handles the specified upstream event.
|
void |
releaseExternalResources()
Shuts down the
Executor which was specified with the constructor
and wait for its termination. |
public ExecutionHandler(Executor executor)
Executor.
Specify an OrderedMemoryAwareThreadPoolExecutor if unsure.@Deprecated public ExecutionHandler(Executor executor, boolean handleDownstream)
public ExecutionHandler(Executor executor, boolean handleDownstream, boolean handleUpstream)
Executor.
Specify an OrderedMemoryAwareThreadPoolExecutor if unsure.public Executor getExecutor()
Executor which was specified with the constructor.public void releaseExternalResources()
Executor which was specified with the constructor
and wait for its termination.releaseExternalResources in interface ExternalResourceReleasablepublic void handleUpstream(ChannelHandlerContext context, ChannelEvent e) throws Exception
ChannelUpstreamHandlerhandleUpstream in interface ChannelUpstreamHandlercontext - the context object for this handlere - the upstream event to process or interceptExceptionpublic void handleDownstream(ChannelHandlerContext ctx, ChannelEvent e) throws Exception
ChannelDownstreamHandlerhandleDownstream in interface ChannelDownstreamHandlerctx - the context object for this handlere - the downstream event to process or interceptExceptionprotected boolean handleReadSuspend(ChannelHandlerContext ctx, ChannelEvent e)
Copyright © 2008-2015 The Netty Project. All Rights Reserved.