Uses of Interface
org.glassfish.grizzly.filterchain.NextAction

Packages that use NextAction
org.glassfish.grizzly.compression.lzma   
org.glassfish.grizzly.compression.zip   
org.glassfish.grizzly.filterchain   
org.glassfish.grizzly.nio.transport   
org.glassfish.grizzly.ssl   
org.glassfish.grizzly.utils   
 

Uses of NextAction in org.glassfish.grizzly.compression.lzma
 

Methods in org.glassfish.grizzly.compression.lzma that return NextAction
 NextAction LZMAFilter.handleClose(FilterChainContext ctx)
           
 NextAction LZMAFilter.handleRead(FilterChainContext ctx)
           
 NextAction LZMAFilter.handleWrite(FilterChainContext ctx)
           
 

Uses of NextAction in org.glassfish.grizzly.compression.zip
 

Methods in org.glassfish.grizzly.compression.zip that return NextAction
 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.
 

Uses of NextAction in org.glassfish.grizzly.filterchain
 

Classes in org.glassfish.grizzly.filterchain that implement NextAction
 class RerunFilterAction
          This NextAction instructs the FilterChain to rerun the same Filter again.
 

Methods in org.glassfish.grizzly.filterchain that return NextAction
 NextAction FilterExecutor.execute(Filter filter, FilterChainContext context)
           
protected  NextAction DefaultFilterChain.executeFilter(FilterExecutor executor, Filter currentFilter, FilterChainContext ctx)
          Execute the Filter, using specific FilterExecutor and FilterChainContext.
 NextAction FilterChainContext.getForkAction()
           
 NextAction FilterChainContext.getInvokeAction()
          Get NextAction implementation, which instructs FilterChain to process next Filter in chain.
 NextAction FilterChainContext.getInvokeAction(java.lang.Object remainder)
          Get NextAction implementation, which instructs FilterChain to process next Filter in chain.
 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.
 NextAction FilterChainContext.getStopAction(Appendable appendable)
          Get NextAction implementation, which instructs FilterChain stop executing phase.
<E> NextAction
FilterChainContext.getStopAction(E remainder, Appender<E> appender)
          Get NextAction implementation, which instructs FilterChain stop executing phase.
 NextAction FilterChainContext.getStopAction(java.lang.Object unknownObject)
          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. use FilterChainContext.getForkAction()
 NextAction TransportFilter.handleAccept(FilterChainContext ctx)
          Delegates accept operation to Transport's specific transport filter.
 NextAction Filter.handleAccept(FilterChainContext ctx)
          Execute a unit of processing work to be performed, when server channel has accepted the client connection.
 NextAction BaseFilter.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 Filter.handleClose(FilterChainContext ctx)
          Execute a unit of processing work to be performed, when connection has been closed.
 NextAction BaseFilter.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 Filter.handleConnect(FilterChainContext ctx)
          Execute a unit of processing work to be performed, when channel gets connected.
 NextAction BaseFilter.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 Filter.handleEvent(FilterChainContext ctx, FilterChainEvent event)
          Handle custom event associated with the Connection.
 NextAction BaseFilter.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 Filter.handleRead(FilterChainContext ctx)
          Execute a unit of processing work to be performed, when channel will become available for reading.
 NextAction BaseFilter.handleRead(FilterChainContext ctx)
          Execute a unit of processing work to be performed, when channel will become available for reading.
 NextAction AbstractCodecFilter.handleRead(FilterChainContext ctx)
           
 NextAction TransportFilter.handleWrite(FilterChainContext ctx)
          Delegates writing operation to Transport's specific transport filter.
 NextAction Filter.handleWrite(FilterChainContext ctx)
          Execute a unit of processing work to be performed, when some data should be written on channel.
 NextAction BaseFilter.handleWrite(FilterChainContext ctx)
          Execute a unit of processing work to be performed, when some data should be written on channel.
 NextAction AbstractCodecFilter.handleWrite(FilterChainContext ctx)
           
 

Uses of NextAction in org.glassfish.grizzly.nio.transport
 

Methods in org.glassfish.grizzly.nio.transport that return NextAction
 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)
           
 

Uses of NextAction in org.glassfish.grizzly.ssl
 

Methods in org.glassfish.grizzly.ssl that return NextAction
 NextAction SSLFilter.handleEvent(FilterChainContext ctx, FilterChainEvent event)
           
 NextAction SSLFilter.handleRead(FilterChainContext ctx)
           
 NextAction SSLFilter.handleWrite(FilterChainContext ctx)
           
 

Uses of NextAction in org.glassfish.grizzly.utils
 

Methods in org.glassfish.grizzly.utils that return NextAction
 NextAction SilentConnectionFilter.handleAccept(FilterChainContext ctx)
           
 NextAction LogFilter.handleAccept(FilterChainContext ctx)
           
 NextAction IdleTimeoutFilter.handleAccept(FilterChainContext ctx)
           
 NextAction ActivityCheckFilter.handleAccept(FilterChainContext ctx)
           
 NextAction SilentConnectionFilter.handleClose(FilterChainContext ctx)
           
 NextAction LogFilter.handleClose(FilterChainContext ctx)
           
 NextAction IdleTimeoutFilter.handleClose(FilterChainContext ctx)
           
 NextAction ActivityCheckFilter.handleClose(FilterChainContext ctx)
           
 NextAction LogFilter.handleConnect(FilterChainContext ctx)
           
 NextAction IdleTimeoutFilter.handleConnect(FilterChainContext ctx)
           
 NextAction ActivityCheckFilter.handleConnect(FilterChainContext ctx)
           
 NextAction SilentConnectionFilter.handleRead(FilterChainContext ctx)
           
 NextAction LogFilter.handleRead(FilterChainContext ctx)
           
 NextAction IdleTimeoutFilter.handleRead(FilterChainContext ctx)
           
 NextAction EchoFilter.handleRead(FilterChainContext ctx)
           
 NextAction DelayFilter.handleRead(FilterChainContext ctx)
           
 NextAction ActivityCheckFilter.handleRead(FilterChainContext ctx)
           
 NextAction SilentConnectionFilter.handleWrite(FilterChainContext ctx)
           
 NextAction LogFilter.handleWrite(FilterChainContext ctx)
           
 NextAction IdleTimeoutFilter.handleWrite(FilterChainContext ctx)
           
 NextAction DelayFilter.handleWrite(FilterChainContext ctx)
           
 NextAction ActivityCheckFilter.handleWrite(FilterChainContext ctx)
           
 



Copyright © 2012 Oracle Corporation. All Rights Reserved.