Modifier and Type | Method and Description |
---|---|
NextAction |
LZMAFilter.handleClose(FilterChainContext ctx) |
NextAction |
LZMAFilter.handleRead(FilterChainContext ctx) |
NextAction |
LZMAFilter.handleWrite(FilterChainContext ctx) |
Modifier and Type | Method and Description |
---|---|
NextAction |
GZipFilter.handleClose(FilterChainContext ctx)
Method perform the clean up of GZIP encoding/decoding state on a closed
Connection . |
NextAction |
GZipFilter.handleRead(FilterChainContext ctx)
Method decodes GZIP encoded data stored in
FilterChainContext.getMessage() and,
as the result, produces a Buffer with a plain data. |
NextAction |
GZipFilter.handleWrite(FilterChainContext ctx)
Method compresses plain data stored in
FilterChainContext.getMessage() and,
as the result, produces a Buffer with a GZIP compressed data. |
Modifier and Type | Class and Description |
---|---|
class |
RerunFilterAction
|
Modifier and Type | Method and Description |
---|---|
NextAction |
FilterExecutor.execute(Filter filter,
FilterChainContext context) |
protected NextAction |
DefaultFilterChain.executeFilter(FilterExecutor executor,
Filter currentFilter,
FilterChainContext ctx)
|
NextAction |
FilterChainContext.getForkAction() |
NextAction |
FilterChainContext.getForkAction(NextAction nextAction) |
NextAction |
FilterChainContext.getInvokeAction()
|
<E> NextAction |
FilterChainContext.getInvokeAction(E incompleteChunk,
Appender<E> appender)
|
NextAction |
FilterChainContext.getInvokeAction(Object unparsedChunk)
|
NextAction |
FilterChainContext.getRerunFilterAction()
Get
NextAction , which instructs FilterChain to rerun the
filter. |
NextAction |
FilterChainContext.getStopAction()
Get
NextAction implementation, which instructs FilterChain
to stop executing phase. |
<E> NextAction |
FilterChainContext.getStopAction(E incompleteChunk,
Appender<E> appender)
Get
NextAction implementation, which instructs FilterChain
stop executing phase. |
NextAction |
FilterChainContext.getStopAction(Object incompleteChunk)
Get
NextAction implementation, which instructs FilterChain
stop executing phase. |
NextAction |
FilterChainContext.getSuspendAction()
Get
NextAction , which instructs FilterChain to suspend filter
chain execution. |
NextAction |
FilterChainContext.getSuspendingStopAction()
Deprecated.
|
NextAction |
TransportFilter.handleAccept(FilterChainContext ctx)
Delegates accept operation to
Transport 's specific transport
filter. |
NextAction |
BaseFilter.handleAccept(FilterChainContext ctx)
Execute a unit of processing work to be performed, when server channel
has accepted the client connection.
|
NextAction |
Filter.handleAccept(FilterChainContext ctx)
Execute a unit of processing work to be performed, when server channel
has accepted the client connection.
|
NextAction |
TransportFilter.handleClose(FilterChainContext ctx)
Delegates close operation to
Transport 's specific transport
filter. |
NextAction |
BaseFilter.handleClose(FilterChainContext ctx)
Execute a unit of processing work to be performed, when connection
has been closed.
|
NextAction |
Filter.handleClose(FilterChainContext ctx)
Execute a unit of processing work to be performed, when connection
has been closed.
|
NextAction |
TransportFilter.handleConnect(FilterChainContext ctx)
Delegates connect operation to
Transport 's specific transport
filter. |
NextAction |
BaseFilter.handleConnect(FilterChainContext ctx)
Execute a unit of processing work to be performed, when channel gets
connected.
|
NextAction |
Filter.handleConnect(FilterChainContext ctx)
Execute a unit of processing work to be performed, when channel gets
connected.
|
NextAction |
TransportFilter.handleEvent(FilterChainContext ctx,
FilterChainEvent event)
Delegates event operation to
Transport 's specific transport
filter. |
NextAction |
BaseFilter.handleEvent(FilterChainContext ctx,
FilterChainEvent event)
Handle custom event associated with the
Connection . |
NextAction |
Filter.handleEvent(FilterChainContext ctx,
FilterChainEvent event)
Handle custom event associated with the
Connection . |
NextAction |
TransportFilter.handleRead(FilterChainContext ctx)
Delegates reading operation to
Transport 's specific transport
filter. |
NextAction |
AbstractCodecFilter.handleRead(FilterChainContext ctx) |
NextAction |
BaseFilter.handleRead(FilterChainContext ctx)
Execute a unit of processing work to be performed, when channel will
become available for reading.
|
NextAction |
Filter.handleRead(FilterChainContext ctx)
Execute a unit of processing work to be performed, when channel will
become available for reading.
|
NextAction |
TransportFilter.handleWrite(FilterChainContext ctx)
Delegates writing operation to
Transport 's specific transport
filter. |
NextAction |
AbstractCodecFilter.handleWrite(FilterChainContext ctx) |
NextAction |
BaseFilter.handleWrite(FilterChainContext ctx)
Execute a unit of processing work to be performed, when some data should
be written on channel.
|
NextAction |
Filter.handleWrite(FilterChainContext ctx)
Execute a unit of processing work to be performed, when some data should
be written on channel.
|
Modifier and Type | Method and Description |
---|---|
void |
FilterChainContext.fork(NextAction nextAction)
This method invocation suggests the
FilterChain to create a
copy of this FilterChainContext and resume/fork its execution
starting from the current Filter . |
NextAction |
FilterChainContext.getForkAction(NextAction nextAction) |
void |
FilterChainContext.resume(NextAction nextAction)
Resume the current FilterChain task processing by completing the current
Filter (the Filter, which suspended the processing) with the
passed NextAction . |
Modifier and Type | Method and Description |
---|---|
protected static NextAction |
HttpCodecFilter.gracefullyCloseConnection(FilterChainContext ctx) |
NextAction |
HttpServerFilter.handleEvent(FilterChainContext ctx,
FilterChainEvent event) |
NextAction |
HttpClientFilter.handleRead(FilterChainContext ctx)
The method is called, once we have received a
Buffer ,
which has to be transformed into HTTP response packet part. |
NextAction |
HttpServerFilter.handleRead(FilterChainContext ctx)
The method is called, once we have received a
Buffer ,
which has to be transformed into HTTP request packet part. |
NextAction |
HttpCodecFilter.handleRead(FilterChainContext ctx,
HttpPacketParsing httpPacket)
The method is called by the specific HttpCodecFilter implementation,
once we have received a
Buffer , which has to be transformed
into HTTP packet part. |
NextAction |
HttpClientFilter.handleWrite(FilterChainContext ctx) |
NextAction |
HttpCodecFilter.handleWrite(FilterChainContext ctx)
The method is called, once we need to serialize a
HttpPacket ,
which may represent HTTP packet header, content or content chunk. |
Modifier and Type | Method and Description |
---|---|
NextAction |
AjpHandlerFilter.handleEvent(FilterChainContext ctx,
FilterChainEvent event)
Handling Http request completion event sent by Http server filter and
send the Ajp end response message.
|
NextAction |
AjpMessageFilter.handleRead(FilterChainContext ctx) |
NextAction |
AjpHandlerFilter.handleRead(FilterChainContext ctx)
Handle the Ajp message.
|
NextAction |
AjpHandlerFilter.handleWrite(FilterChainContext ctx)
Encoding HttpResponsePacket or HttpContent to Ajp message.
|
Modifier and Type | Method and Description |
---|---|
NextAction |
HttpServerFilter.handleRead(FilterChainContext ctx) |
NextAction |
FileCacheFilter.handleRead(FilterChainContext ctx) |
Modifier and Type | Method and Description |
---|---|
NextAction |
UDPNIOTransportFilter.handleEvent(FilterChainContext ctx,
FilterChainEvent event) |
NextAction |
TCPNIOTransportFilter.handleEvent(FilterChainContext ctx,
FilterChainEvent event) |
NextAction |
UDPNIOTransportFilter.handleRead(FilterChainContext ctx) |
NextAction |
TCPNIOTransportFilter.handleRead(FilterChainContext ctx) |
NextAction |
UDPNIOTransportFilter.handleWrite(FilterChainContext ctx) |
NextAction |
TCPNIOTransportFilter.handleWrite(FilterChainContext ctx) |
Modifier and Type | Method and Description |
---|---|
NextAction |
PUFilter.handleClose(FilterChainContext ctx) |
NextAction |
BackChannelFilter.handleEvent(FilterChainContext ctx,
FilterChainEvent event) |
NextAction |
PUFilter.handleEvent(FilterChainContext ctx,
FilterChainEvent event) |
NextAction |
BackChannelFilter.handleRead(FilterChainContext ctx) |
NextAction |
PUFilter.handleRead(FilterChainContext ctx) |
NextAction |
BackChannelFilter.handleWrite(FilterChainContext ctx) |
Modifier and Type | Method and Description |
---|---|
NextAction |
EchoFilter.handleRead(FilterChainContext ctx)
Handle just read operation, when some message has come and ready to be
processed.
|
NextAction |
EchoFilterAsync.handleRead(FilterChainContext ctx)
Handle just read operation, when some message has come and ready to be
processed.
|
NextAction |
ClientFilter.handleRead(FilterChainContext ctx)
Handle just read operation, when some message has come and ready to be
processed.
|
Modifier and Type | Method and Description |
---|---|
NextAction |
GIOPFilter.handleRead(FilterChainContext ctx)
Method is called, when new data was read from the Connection and ready
to be processed.
|
NextAction |
GIOPClient.CustomClientFilter.handleRead(FilterChainContext ctx) |
NextAction |
GIOPFilter.handleWrite(FilterChainContext ctx)
Method is called, when we write a data to the Connection.
|
Modifier and Type | Method and Description |
---|---|
NextAction |
ClientDownloadFilter.handleClose(FilterChainContext ctx)
The method is called, when the client connection will get closed.
|
NextAction |
ClientDownloadFilter.handleConnect(FilterChainContext ctx)
The method is called, when a client connection gets connected to a web
server.
|
NextAction |
WebServerFilter.handleRead(FilterChainContext ctx)
The method is called once we have received some
HttpContent . |
NextAction |
ClientDownloadFilter.handleRead(FilterChainContext ctx)
The method is called, when we receive a
HttpContent from a server. |
Modifier and Type | Method and Description |
---|---|
NextAction |
LifeCycleFilter.handleAccept(FilterChainContext ctx)
Method is called, when new
Connection was
accepted by a Transport |
NextAction |
LifeCycleFilter.handleClose(FilterChainContext ctx)
Method is called, when the
Connection is getting closed |
NextAction |
LifeCycleFilter.handleConnect(FilterChainContext ctx)
Method is called, when new client
Connection was
connected to some endpoint |
Modifier and Type | Method and Description |
---|---|
NextAction |
AddClientMessageFilter.handleRead(FilterChainContext ctx)
Handle just read operation, when some message has come and ready to be
processed.
|
NextAction |
AddServerMessageFilter.handleRead(FilterChainContext ctx)
Handle just read operation, when some message has come and ready to be
processed.
|
NextAction |
AddServiceFilter.handleRead(FilterChainContext ctx)
Handle just read operation, when some message has come and ready to be
processed.
|
NextAction |
AddClientMessageFilter.handleWrite(FilterChainContext ctx)
Method is called, when we write a data to the Connection.
|
NextAction |
AddServerMessageFilter.handleWrite(FilterChainContext ctx)
Method is called, when we write a data to the Connection.
|
Modifier and Type | Method and Description |
---|---|
NextAction |
SubServerMessageFilter.handleRead(FilterChainContext ctx)
Handle just read operation, when some message has come and ready to be
processed.
|
NextAction |
SubClientMessageFilter.handleRead(FilterChainContext ctx)
Handle just read operation, when some message has come and ready to be
processed.
|
NextAction |
SubServiceFilter.handleRead(FilterChainContext ctx)
Handle just read operation, when some message has come and ready to be
processed.
|
NextAction |
SubServerMessageFilter.handleWrite(FilterChainContext ctx)
Method is called, when we write a data to the Connection.
|
NextAction |
SubClientMessageFilter.handleWrite(FilterChainContext ctx)
Method is called, when we write a data to the Connection.
|
Modifier and Type | Method and Description |
---|---|
NextAction |
ClientAuthFilter.handleClose(FilterChainContext ctx)
The method is called, when a connection gets closed.
|
NextAction |
ServerAuthFilter.handleClose(FilterChainContext ctx)
The method is called, when a connection gets closed.
|
NextAction |
ClientAuthFilter.handleRead(FilterChainContext ctx)
The method is called once we have received
MultiLinePacket . |
NextAction |
ClientFilter.handleRead(FilterChainContext ctx)
The method is called, when we receive a message from a server.
|
NextAction |
MultiLineFilter.handleRead(FilterChainContext ctx)
The method is called once we have received a single
String line. |
NextAction |
ServerAuthFilter.handleRead(FilterChainContext ctx)
The method is called once we have received
MultiLinePacket from
a client. |
NextAction |
ClientAuthFilter.handleWrite(FilterChainContext ctx)
The method is called each time, when client sends a message to a server.
|
NextAction |
MultiLineFilter.handleWrite(FilterChainContext ctx)
The method is called whem we send MultiLinePacket.
|
NextAction |
ServerAuthFilter.handleWrite(FilterChainContext ctx)
The method is called each time, when server sends a message to a client.
|
Modifier and Type | Method and Description |
---|---|
NextAction |
TunnelFilter.handleClose(FilterChainContext ctx)
This method will be called, to notify about
Connection closing. |
NextAction |
TunnelFilter.handleRead(FilterChainContext ctx)
This method will be called, once
Connection has some available data |
Modifier and Type | Method and Description |
---|---|
NextAction |
PrintFilter.handleRead(FilterChainContext ctx)
Execute a unit of processing work to be performed, when channel will
become available for reading.
|
Modifier and Type | Method and Description |
---|---|
NextAction |
SSLBaseFilter.handleEvent(FilterChainContext ctx,
FilterChainEvent event) |
NextAction |
SSLBaseFilter.handleRead(FilterChainContext ctx) |
NextAction |
SSLBaseFilter.handleWrite(FilterChainContext ctx) |
NextAction |
SSLFilter.handleWrite(FilterChainContext ctx) |
protected NextAction |
SSLBaseFilter.unwrapAll(FilterChainContext ctx,
SSLConnectionContext sslCtx) |
Modifier and Type | Method and Description |
---|---|
NextAction |
BaseWebSocketFilter.handleClose(FilterChainContext ctx)
Method handles Grizzly
Connection close phase. |
NextAction |
BaseWebSocketFilter.handleConnect(FilterChainContext ctx)
Method handles Grizzly
Connection connect phase. |
protected NextAction |
WebSocketFilter.handleHandshake(FilterChainContext ctx,
HttpContent content) |
protected NextAction |
WebSocketClientFilter.handleHandshake(FilterChainContext ctx,
HttpContent content) |
protected abstract NextAction |
BaseWebSocketFilter.handleHandshake(FilterChainContext ctx,
HttpContent content)
Handle websocket handshake
|
NextAction |
BaseWebSocketFilter.handleRead(FilterChainContext ctx)
Handle Grizzly
Connection read phase. |
NextAction |
BaseWebSocketFilter.handleWrite(FilterChainContext ctx)
Handle Grizzly
Connection write phase. |
Copyright © 2014 Oracle Corporation. All rights reserved.