Uses of Interface
org.glassfish.grizzly.IOStrategy

Packages that use IOStrategy
org.glassfish.grizzly   
org.glassfish.grizzly.nio.transport   
org.glassfish.grizzly.strategies   
 

Uses of IOStrategy in org.glassfish.grizzly
 

Fields in org.glassfish.grizzly declared as IOStrategy
protected  IOStrategy AbstractTransport.strategy
          Transport strategy
 

Methods in org.glassfish.grizzly that return IOStrategy
 IOStrategy Transport.getIOStrategy()
          Get the IOStrategy implementation, which will be used by Transport to process IOEvent.
 IOStrategy NIOTransportBuilder.getIOStrategy()
           
 IOStrategy AbstractTransport.getIOStrategy()
          Get the IOStrategy implementation, which will be used by Transport to process IOEvent.
 

Methods in org.glassfish.grizzly with parameters of type IOStrategy
 void Transport.setIOStrategy(IOStrategy IOStrategy)
          Set the IOStrategy implementation, which will be used by Transport to process IOEvent.
 T NIOTransportBuilder.setIOStrategy(IOStrategy strategy)
           Changes the IOStrategy that will be used.
 void AbstractTransport.setIOStrategy(IOStrategy IOStrategy)
          Set the IOStrategy implementation, which will be used by Transport to process IOEvent.
 

Constructors in org.glassfish.grizzly with parameters of type IOStrategy
NIOTransportBuilder(java.lang.Class<? extends NIOTransport> transportClass, IOStrategy strategy)
           Constructs a new NIOTransport using the given transportClass and IOStrategy.
 

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

Constructors in org.glassfish.grizzly.nio.transport with parameters of type IOStrategy
TCPNIOTransportBuilder(java.lang.Class<? extends TCPNIOTransport> transportClass, IOStrategy strategy)
           
UDPNIOTransportBuilder(java.lang.Class<? extends UDPNIOTransport> transportClass, IOStrategy strategy)
           
 

Uses of IOStrategy in org.glassfish.grizzly.strategies
 

Classes in org.glassfish.grizzly.strategies that implement IOStrategy
 class AbstractIOStrategy
           
 class LeaderFollowerNIOStrategy
          IOStrategy, which executes Processors in a current threads, and resumes selector thread logic in separate thread.
 class SameThreadIOStrategy
          IOStrategy, which executes Processors in a current thread.
 class SimpleDynamicNIOStrategy
          Simple dynamic strategy, which switches I/O processing strategies, basing on statistics.
 class WorkerThreadIOStrategy
          IOStrategy, which executes Processors in worker thread.
 



Copyright © 2012 Oracle Corporation. All Rights Reserved.