Uses of Class
com.sun.grizzly.Context

Packages that use Context
com.sun.grizzly   
com.sun.grizzly.callbackhandler   
com.sun.grizzly.filterchain   
com.sun.grizzly.nio   
com.sun.grizzly.nio.transport   
com.sun.grizzly.threadpool   
com.sun.grizzly.utils   
 

Uses of Context in com.sun.grizzly
 

Classes in com.sun.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 com.sun.grizzly that return Context
 Context ProcessorRunnable.getContext()
          Get the processing Context.
 

Methods in com.sun.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 com.sun.grizzly with parameters of type Context
ProcessorRunnable(Context context)
           
 

Uses of Context in com.sun.grizzly.callbackhandler
 

Methods in com.sun.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 com.sun.grizzly.filterchain
 

Subclasses of Context in com.sun.grizzly.filterchain
 class FilterChainContext
          FilterChain Context implementation.
 

Methods in com.sun.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(com.sun.grizzly.filterchain.FilterChainContext)
 

Uses of Context in com.sun.grizzly.nio
 

Methods in com.sun.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 com.sun.grizzly.nio.transport
 

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

Methods in com.sun.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 com.sun.grizzly.threadpool
 

Methods in com.sun.grizzly.threadpool that return Context
 Context DefaultWorkerThread.getCachedContext()
           
 

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

Uses of Context in com.sun.grizzly.utils
 

Classes in com.sun.grizzly.utils 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.