Uses of Class
org.glassfish.grizzly.Context

Packages that use Context
org.glassfish.grizzly   
org.glassfish.grizzly.callbackhandler   
org.glassfish.grizzly.filterchain   
org.glassfish.grizzly.nio   
org.glassfish.grizzly.nio.transport   
org.glassfish.grizzly.threadpool   
org.glassfish.grizzly.util   
 

Uses of Context in org.glassfish.grizzly
 

Classes in org.glassfish.grizzly with type parameters of type Context
 class AbstractProcessor<E extends Context>
          Abstract Processor interface implementation.
 interface PostProcessor<E extends Context>
          Post processor, which will be called once Processor will complete its execution.
 interface Processor<E extends Context>
          Processor implementations are responsible for processing I/O events, which occur on connection.
 

Methods in org.glassfish.grizzly that return Context
 Context ProcessorRunnable.getContext()
          Get the processing Context.
 

Methods in org.glassfish.grizzly with parameters of type Context
 ProcessorResult StandaloneProcessor.process(Context context)
          This method should never be called, because StandaloneProcessor.isInterested(IOEvent) returns false for any IOEvent.
 void ProcessorRunnable.setContext(Context context)
          Set the processing Context.
 

Constructors in org.glassfish.grizzly with parameters of type Context
ProcessorRunnable(Context context)
           
 

Uses of Context in org.glassfish.grizzly.callbackhandler
 

Methods in org.glassfish.grizzly.callbackhandler with parameters of type Context
 void CallbackHandler.onAccept(Context context)
          This method is called when IOEvent.ACCEPTED event occured on Connection.
 void CallbackHandlerAdapter.onAccept(Context context)
          This method is called when IOEvent.ACCEPTED event occured on Connection.
 void CallbackHandler.onClose(Context context)
          This method is called when IOEvent.CLOSED event occured on Connection.
 void CallbackHandlerAdapter.onClose(Context context)
          This method is called when IOEvent.CLOSED event occured on Connection.
 void CallbackHandler.onConnect(Context context)
          This method is called when IOEvent.CONNECTED event occured on Connection.
 void CallbackHandlerAdapter.onConnect(Context context)
          This method is called when IOEvent.CONNECTED event occured on Connection.
 void CallbackHandler.onRead(Context context)
          This method is called when IOEvent.READ event occured on Connection.
 void CallbackHandlerAdapter.onRead(Context context)
          This method is called when IOEvent.READ event occured on Connection.
 void CallbackHandler.onWrite(Context context)
          This method is called when IOEvent.WRITE event occured on Connection.
 void CallbackHandlerAdapter.onWrite(Context context)
          This method is called when IOEvent.WRITE event occured on Connection.
 ProcessorResult AbstractCallbackHandler.process(Context context)
          Delegate IOEvent processing to appropriate CallbackHandler method.
 

Uses of Context in org.glassfish.grizzly.filterchain
 

Subclasses of Context in org.glassfish.grizzly.filterchain
 class FilterChainContext
          FilterChain Context implementation.
 

Methods in org.glassfish.grizzly.filterchain with parameters of type Context
 void AbstractFilterChain.afterProcess(Context context)
          Method will be called by framework after Processor execution, so it can release associated resources.
 void AbstractFilterChain.beforeProcess(Context context)
          Method will be called by framework before executing this Processor.
 FilterChain FilterAdapter.getFilterChain(Context ctx)
          Returns the FilterChain, which is executing this Filter on the current thread.
 ProcessorResult AbstractFilterChain.process(Context context)
          Delegates processing to AbstractFilterChain.execute(org.glassfish.grizzly.filterchain.FilterChainContext)
 

Uses of Context in org.glassfish.grizzly.nio
 

Methods in org.glassfish.grizzly.nio with parameters of type Context
 ProcessorResult AbstractNIOAsyncQueueReader.process(Context context)
          Method will be called by framework to process some event, which occured on a connection
 ProcessorResult AbstractNIOAsyncQueueWriter.process(Context context)
          Method will be called by framework to process some event, which occured on a connection
 

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

Methods in org.glassfish.grizzly.nio.transport that return Context
 Context UDPNIOAsyncQueueReader.context()
           
 Context TCPNIOAsyncQueueWriter.context()
           
 Context UDPNIOAsyncQueueWriter.context()
           
 Context TCPNIOAsyncQueueReader.context()
           
 

Methods in org.glassfish.grizzly.nio.transport with parameters of type Context
 void UDPNIOAsyncQueueReader.afterProcess(Context context)
           
 void TCPNIOAsyncQueueWriter.afterProcess(Context context)
           
 void UDPNIOAsyncQueueWriter.afterProcess(Context context)
           
 void TCPNIOAsyncQueueReader.afterProcess(Context context)
           
 void UDPNIOAsyncQueueReader.beforeProcess(Context context)
           
 void TCPNIOAsyncQueueWriter.beforeProcess(Context context)
           
 void UDPNIOAsyncQueueWriter.beforeProcess(Context context)
           
 void TCPNIOAsyncQueueReader.beforeProcess(Context context)
           
 ProcessorResult TCPNIOConnectorHandler.ConnectorEventProcessor.process(Context context)
          Method will be called by framework, when async connect will be completed
 ProcessorResult TCPNIOServerConnection.AcceptorEventProcessor.process(Context context)
          Method will be called by framework, when async accept will be ready
 void TCPNIOTransport.EnableInterestPostProcessor.process(ProcessorResult result, Context context)
           
 void UDPNIOTransport.EnableInterestPostProcessor.process(ProcessorResult result, Context context)
           
 

Uses of Context in org.glassfish.grizzly.threadpool
 

Methods in org.glassfish.grizzly.threadpool that return Context
 Context DefaultWorkerThread.getCachedContext()
           
 

Methods in org.glassfish.grizzly.threadpool with parameters of type Context
 void DefaultWorkerThread.setCachedContext(Context cachedContext)
           
 

Uses of Context in org.glassfish.grizzly.util
 

Classes in org.glassfish.grizzly.util with type parameters of type Context
 class ProcessorWrapper<E extends Context>
          Processor, which redirects all calls to internal Processor instance;
 



Copyright © 2009 SUN Microsystems. All Rights Reserved.