Uses of Interface
com.sun.grizzly.ConnectorHandler

Packages that use ConnectorHandler
com.sun.grizzly   
com.sun.grizzly.connectioncache.client   
com.sun.grizzly.filter   
 

Uses of ConnectorHandler in com.sun.grizzly
 

Classes in com.sun.grizzly with type parameters of type ConnectorHandler
 interface ConnectorHandlerPool<E extends ConnectorHandler>
          Interface representing ConnectorHandler pool Implementation of this interface will be responsible for allocating/releasing client side ConnectorHandlers
 interface ConnectorInstanceHandler<E extends ConnectorHandler>
          This interface is responsible of handling ConnectorHandler instance creation.
static class ConnectorInstanceHandler.ConcurrentQueueConnectorInstanceHandler<E extends ConnectorHandler>
          Concurrent Queue ConnectorInstanceHandler implementation
static class ConnectorInstanceHandler.ConcurrentQueueDelegateCIH<E extends ConnectorHandler>
          Concurrent Queue ConnectorInstanceHandler implementation
 

Classes in com.sun.grizzly that implement ConnectorHandler
 class AbstractConnectorHandler<E extends SelectorHandler,K extends CallbackHandler>
          Abstract ConnectorHandler definition, which preimplements common getter/setter methods.
 class SSLConnectorHandler
           Non blocking SSL Connector Handler.
 class TCPConnectorHandler
          Non blocking TCP Connector Handler.
 class UDPConnectorHandler
          Client side interface used to implement non blocking client operation.
 

Methods in com.sun.grizzly that return ConnectorHandler
 ConnectorHandler SelectorHandler.acquireConnectorHandler()
          Return an instance of the ConnectorHandler
 ConnectorHandler TCPSelectorHandler.acquireConnectorHandler()
          Return an instance of the default ConnectorHandler, which is the TCPConnectorHandler
 ConnectorHandler Controller.acquireConnectorHandler(Controller.Protocol protocol)
          Return an instance of a ConnectorHandler based on the Protocol requested.
 ConnectorHandler DefaultConnectorHandlerPool.acquireConnectorHandler(Controller.Protocol protocol)
           
 

Methods in com.sun.grizzly that return types with arguments of type ConnectorHandler
protected  Callable<ConnectorHandler> TCPSelectorHandler.getConnectorInstanceHandlerDelegate()
          Return factory object, which knows how to create ConnectorInstanceHandler corresponding to the protocol
protected  Callable<ConnectorHandler> SSLSelectorHandler.getConnectorInstanceHandlerDelegate()
           
protected  Callable<ConnectorHandler> UDPSelectorHandler.getConnectorInstanceHandlerDelegate()
           
 

Methods in com.sun.grizzly with parameters of type ConnectorHandler
 void Controller.releaseConnectorHandler(ConnectorHandler connectorHandler)
          Return a ConnectorHandler to the pool of ConnectorHandler.
 void SelectorHandler.releaseConnectorHandler(ConnectorHandler connectorHandler)
          Release a ConnectorHandler.
 void TCPSelectorHandler.releaseConnectorHandler(ConnectorHandler connectorHandler)
          Release a ConnectorHandler.
 void DefaultConnectorHandlerPool.releaseConnectorHandler(ConnectorHandler connectorHandler)
           
 

Constructors in com.sun.grizzly with parameters of type ConnectorHandler
DefaultCallbackHandler(ConnectorHandler connectorHandler)
          Create a CallbackHandler that delegate the read and write operation to the ProtocolChain associated with the ConnectorHandler
DefaultCallbackHandler(ConnectorHandler connectorHandler, boolean delegateToProtocolChain)
          Create a CallbackHandler that delegate the read and write operation to the ProtocolChain associated with the ConnectorHandler.
 

Uses of ConnectorHandler in com.sun.grizzly.connectioncache.client
 

Classes in com.sun.grizzly.connectioncache.client that implement ConnectorHandler
 class CacheableConnectorHandler
          Extended implementation of the DefaultSelectionKeyHandler with ConnectionManagement integrated in it
 

Methods in com.sun.grizzly.connectioncache.client that return ConnectorHandler
 ConnectorHandler CacheableConnectorHandler.getUnderlyingConnectorHandler()
           
 

Methods in com.sun.grizzly.connectioncache.client that return types with arguments of type ConnectorHandler
 OutboundConnectionCache<ConnectorHandler> CacheableConnectorHandlerPool.getOutboundConnectionCache()
           
 

Constructor parameters in com.sun.grizzly.connectioncache.client with type arguments of type ConnectorHandler
CacheableConnectorHandlerPool(Controller controller, int highWaterMark, int numberToReclaim, int maxParallel, ConnectionFinder<ConnectorHandler> connectionFinder)
           
CacheableConnectorHandlerPool(Controller controller, int highWaterMark, int numberToReclaim, int maxParallel, ConnectionFinder<ConnectorHandler> connectionFinder, OutboundConnectionFactory<ConnectorHandler> factory)
           
CacheableConnectorHandlerPool(Controller controller, int highWaterMark, int numberToReclaim, int maxParallel, ConnectionFinder<ConnectorHandler> connectionFinder, OutboundConnectionFactory<ConnectorHandler> factory)
           
 

Uses of ConnectorHandler in com.sun.grizzly.filter
 

Constructors in com.sun.grizzly.filter with parameters of type ConnectorHandler
ProxyCallbackHandler(boolean authentication, CallbackHandler<Context> callbackhandler, ConnectorHandler connectorHandler, CountDownLatch proxyHandshakeDone, String host, int port, String agent, String user, String pass)
           
 



Copyright © 2012 Oracle Corporation. All Rights Reserved.