Uses of Class
org.glassfish.grizzly.filterchain.FilterChainContext

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

Uses of FilterChainContext in org.glassfish.grizzly.filterchain
 

Fields in org.glassfish.grizzly.filterchain with type parameters of type FilterChainContext
protected  ObjectPool<FilterChainContext> AbstractFilterChain.filterChainContextPool
          FilterChainContext object pool.
 

Methods in org.glassfish.grizzly.filterchain that return FilterChainContext
 FilterChainContext AbstractFilterChain.context()
          Creates Context
 FilterChainContext DefaultDecoderTransformer.getContext(AttributeStorage state)
           
 FilterChainContext DefaultEncoderTransformer.getContext(AttributeStorage state)
           
 

Methods in org.glassfish.grizzly.filterchain with parameters of type FilterChainContext
 void Filter.exceptionOccurred(FilterChainContext ctx, Throwable error)
          Notification about exception, occured on the FilterChain
 void FilterAdapter.exceptionOccurred(FilterChainContext ctx, Throwable error)
          Notification about exception, occured on the FilterChain
 ProcessorResult DefaultFilterChain.execute(FilterChainContext ctx)
          Execute this FilterChain.
abstract  ProcessorResult AbstractFilterChain.execute(FilterChainContext context)
          Method processes occured IOEvent on this FilterChain.
 NextAction DefaultFilterChain.FilterExecutor.execute(Filter filter, FilterChainContext context, NextAction nextAction)
           
protected  boolean DefaultFilterChain.executeChain(FilterChainContext ctx, DefaultFilterChain.FilterExecutor executor)
          Sequentially lets each Filter in chain to process IOEvent.
 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.
protected  boolean DefaultFilterChain.postExecuteChain(FilterChainContext ctx, DefaultFilterChain.FilterExecutor executor)
          Sequentially lets each executed Filter to post process IOEvent.
 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.
 void DefaultDecoderTransformer.setContext(AttributeStorage state, FilterChainContext context)
           
 void DefaultEncoderTransformer.setContext(AttributeStorage state, FilterChainContext context)
           
protected  void DefaultFilterChain.throwChain(FilterChainContext ctx, Throwable exception)
          Notify the filters about error.
 

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

Methods in org.glassfish.grizzly.nio.transport with parameters of type FilterChainContext
 void UDPNIOStreamTransportFilter.exceptionOccurred(FilterChainContext ctx, Throwable error)
           
 void UDPNIOMessageTransportFilter.exceptionOccurred(FilterChainContext ctx, Throwable error)
           
 void TCPNIOTransportFilter.exceptionOccurred(FilterChainContext ctx, Throwable error)
           
 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 FilterChainContext in org.glassfish.grizzly.smart
 

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

Uses of FilterChainContext in org.glassfish.grizzly.ssl
 

Methods in org.glassfish.grizzly.ssl with parameters of type FilterChainContext
 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 FilterChainContext in org.glassfish.grizzly.util
 

Methods in org.glassfish.grizzly.util with parameters of type FilterChainContext
 void LogFilter.exceptionOccurred(FilterChainContext ctx, Throwable error)
           
 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.