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

Packages that use NextAction
org.glassfish.grizzly.filterchain   
org.glassfish.grizzly.nio.transport   
org.glassfish.grizzly.smart   
org.glassfish.grizzly.ssl   
org.glassfish.grizzly.util   
 

Uses of NextAction in org.glassfish.grizzly.filterchain
 

Methods in org.glassfish.grizzly.filterchain that return NextAction
 NextAction DefaultFilterChain.FilterExecutor.execute(Filter filter, FilterChainContext context, NextAction nextAction)
           
 NextAction FilterChainContext.getInvokeAction()
          Get NextAction implementation, which instructs FilterChain to process next Filter in chain.
 NextAction FilterChainContext.getInvokeAction(List<Filter> filters)
          Get NextAction implementation, which instructs FilterChain to process next Filter in chain.
 NextAction FilterChainContext.getInvokeAction(List<Filter> filters, int nextFilterIdx)
          Get NextAction implementation, which instructs FilterChain to process next Filter in chain.
 NextAction FilterChainContext.getRerunChainAction()
          Get NextAction implementation, which is expected only on post processing phase.
 NextAction FilterChainContext.getStopAction()
          Get NextAction implementation, which instructs FilterChain to stop executing phase and start post executing filters.
 NextAction FilterChainContext.getSuspendAction()
          Get NextAction, which instructs FilterChain to suspend filter chain execution, both execute and post-execute phases.
 NextAction Filter.handleAccept(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when server channel has accepted the client connection.
 NextAction TransportFilter.handleAccept(FilterChainContext ctx, NextAction nextAction)
          Delegates accept operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleAccept(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when server channel has accepted the client connection.
 NextAction Filter.handleClose(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when connection has been closed.
 NextAction TransportFilter.handleClose(FilterChainContext ctx, NextAction nextAction)
          Delegates close operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleClose(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when connection has been closed.
 NextAction Filter.handleConnect(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel gets connected.
 NextAction TransportFilter.handleConnect(FilterChainContext ctx, NextAction nextAction)
          Delegates connect operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleConnect(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel gets connected.
 NextAction Filter.handleRead(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for reading.
 NextAction TransportFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
          Delegates reading operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleRead(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for reading.
 NextAction Filter.handleWrite(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for writing.
 NextAction TransportFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
          Delegates writing operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleWrite(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for writing.
 NextAction Filter.postAccept(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleAccept(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postAccept(FilterChainContext ctx, NextAction nextAction)
          Delegates post accepting processing to Transport's specific transport filter.
 NextAction FilterAdapter.postAccept(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleAccept(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction Filter.postClose(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleClose(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postClose(FilterChainContext ctx, NextAction nextAction)
          Delegates post closing processing to Transport's specific transport filter.
 NextAction FilterAdapter.postClose(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleClose(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction Filter.postConnect(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleConnect(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postConnect(FilterChainContext ctx, NextAction nextAction)
          Delegates post connecting processing to Transport's specific transport filter.
 NextAction FilterAdapter.postConnect(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleConnect(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction Filter.postRead(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleRead(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postRead(FilterChainContext ctx, NextAction nextAction)
          Delegates post reading processing to Transport's specific transport filter.
 NextAction FilterAdapter.postRead(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleRead(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction Filter.postWrite(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleWrite(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postWrite(FilterChainContext ctx, NextAction nextAction)
          Delegates post writing processing to Transport's specific transport filter.
 NextAction FilterAdapter.postWrite(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleWrite(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 

Methods in org.glassfish.grizzly.filterchain with parameters of type NextAction
 NextAction DefaultFilterChain.FilterExecutor.execute(Filter filter, FilterChainContext context, NextAction nextAction)
           
 NextAction Filter.handleAccept(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when server channel has accepted the client connection.
 NextAction TransportFilter.handleAccept(FilterChainContext ctx, NextAction nextAction)
          Delegates accept operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleAccept(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when server channel has accepted the client connection.
 NextAction Filter.handleClose(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when connection has been closed.
 NextAction TransportFilter.handleClose(FilterChainContext ctx, NextAction nextAction)
          Delegates close operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleClose(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when connection has been closed.
 NextAction Filter.handleConnect(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel gets connected.
 NextAction TransportFilter.handleConnect(FilterChainContext ctx, NextAction nextAction)
          Delegates connect operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleConnect(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel gets connected.
 NextAction Filter.handleRead(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for reading.
 NextAction TransportFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
          Delegates reading operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleRead(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for reading.
 NextAction Filter.handleWrite(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for writing.
 NextAction TransportFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
          Delegates writing operation to Transport's specific transport filter.
 NextAction FilterAdapter.handleWrite(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for writing.
 NextAction Filter.postAccept(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleAccept(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postAccept(FilterChainContext ctx, NextAction nextAction)
          Delegates post accepting processing to Transport's specific transport filter.
 NextAction FilterAdapter.postAccept(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleAccept(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction Filter.postClose(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleClose(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postClose(FilterChainContext ctx, NextAction nextAction)
          Delegates post closing processing to Transport's specific transport filter.
 NextAction FilterAdapter.postClose(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleClose(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction Filter.postConnect(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleConnect(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postConnect(FilterChainContext ctx, NextAction nextAction)
          Delegates post connecting processing to Transport's specific transport filter.
 NextAction FilterAdapter.postConnect(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleConnect(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction Filter.postRead(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleRead(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postRead(FilterChainContext ctx, NextAction nextAction)
          Delegates post reading processing to Transport's specific transport filter.
 NextAction FilterAdapter.postRead(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleRead(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction Filter.postWrite(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleWrite(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction TransportFilter.postWrite(FilterChainContext ctx, NextAction nextAction)
          Delegates post writing processing to Transport's specific transport filter.
 NextAction FilterAdapter.postWrite(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleWrite(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 

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

Methods in org.glassfish.grizzly.nio.transport that return NextAction
 NextAction UDPNIOStreamTransportFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction UDPNIOMessageTransportFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction TCPNIOTransportFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction UDPNIOStreamTransportFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction UDPNIOMessageTransportFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction TCPNIOTransportFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 

Methods in org.glassfish.grizzly.nio.transport with parameters of type NextAction
 NextAction UDPNIOStreamTransportFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction UDPNIOMessageTransportFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction TCPNIOTransportFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction UDPNIOStreamTransportFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction UDPNIOMessageTransportFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction TCPNIOTransportFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 

Uses of NextAction in org.glassfish.grizzly.smart
 

Methods in org.glassfish.grizzly.smart that return NextAction
 NextAction SmartFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction SmartFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction SmartFilter.postRead(FilterChainContext ctx, NextAction nextAction)
           
 

Methods in org.glassfish.grizzly.smart with parameters of type NextAction
 NextAction SmartFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction SmartFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction SmartFilter.postRead(FilterChainContext ctx, NextAction nextAction)
           
 

Uses of NextAction in org.glassfish.grizzly.ssl
 

Methods in org.glassfish.grizzly.ssl that return NextAction
 NextAction SSLFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
          Wraps FilterChainContext default StreamReader and StreamWriter with SSL aware ones.
 NextAction SSLFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for writing.
 NextAction SSLFilter.postClose(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleClose(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction SSLFilter.postRead(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleRead(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction SSLFilter.postWrite(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleWrite(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 

Methods in org.glassfish.grizzly.ssl with parameters of type NextAction
 NextAction SSLFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
          Wraps FilterChainContext default StreamReader and StreamWriter with SSL aware ones.
 NextAction SSLFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
          Execute a unit of processing work to be performed, when channel will become available for writing.
 NextAction SSLFilter.postClose(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleClose(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction SSLFilter.postRead(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleRead(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 NextAction SSLFilter.postWrite(FilterChainContext ctx, NextAction nextAction)
          Execute any cleanup activities, such as releasing resources that were acquired during the execution of Filter#handleWrite(com.sun.grizzly.FilterChainContext) method of this Filter instance.
 

Uses of NextAction in org.glassfish.grizzly.util
 

Methods in org.glassfish.grizzly.util that return NextAction
 NextAction LogFilter.handleAccept(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.handleClose(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.handleConnect(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction EchoFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postAccept(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.postAccept(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postClose(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postConnect(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.postConnect(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.postRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.postWrite(FilterChainContext ctx, NextAction nextAction)
           
 

Methods in org.glassfish.grizzly.util with parameters of type NextAction
 NextAction LogFilter.handleAccept(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.handleClose(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.handleConnect(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction EchoFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.handleRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.handleWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postAccept(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.postAccept(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postClose(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postConnect(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.postConnect(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.postRead(FilterChainContext ctx, NextAction nextAction)
           
 NextAction LogFilter.postWrite(FilterChainContext ctx, NextAction nextAction)
           
 NextAction IdleTimeoutFilter.postWrite(FilterChainContext ctx, NextAction nextAction)
           
 



Copyright © 2009 SUN Microsystems. All Rights Reserved.