Uses of Interface
org.glassfish.grizzly.impl.FutureImpl

Packages that use FutureImpl
org.glassfish.grizzly.impl   
org.glassfish.grizzly.nio.transport   
org.glassfish.grizzly.ssl   
org.glassfish.grizzly.streams   
org.glassfish.grizzly.utils   
 

Uses of FutureImpl in org.glassfish.grizzly.impl
 

Classes in org.glassfish.grizzly.impl that implement FutureImpl
 class SafeFutureImpl<R>
          Safe FutureImpl implementation.
 class UnsafeFutureImpl<R>
          Simple thread-unsafe Future implementation.
 

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

Methods in org.glassfish.grizzly.nio.transport with parameters of type FutureImpl
protected  void UDPNIOConnectorHandler.waitNIOFuture(FutureImpl<Connection> future, CompletionHandler<Connection> completionHandler)
           
protected  void TCPNIOConnectorHandler.waitNIOFuture(FutureImpl<Connection> future, CompletionHandler<Connection> completionHandler)
           
 

Constructors in org.glassfish.grizzly.nio.transport with parameters of type FutureImpl
TCPNIOServerConnection.RegisterAcceptedChannelCompletionHandler(FutureImpl<Connection> listener)
           
 

Uses of FutureImpl in org.glassfish.grizzly.ssl
 

Constructors in org.glassfish.grizzly.ssl with parameters of type FutureImpl
SSLStreamWriter.HandshakeCompletionHandler(FutureImpl<javax.net.ssl.SSLEngine> future, CompletionHandler<javax.net.ssl.SSLEngine> completionHandler, javax.net.ssl.SSLEngine sslEngine)
           
 

Uses of FutureImpl in org.glassfish.grizzly.streams
 

Fields in org.glassfish.grizzly.streams declared as FutureImpl
protected  FutureImpl<java.lang.Integer> BufferedInput.future
           
 

Uses of FutureImpl in org.glassfish.grizzly.utils
 

Methods in org.glassfish.grizzly.utils that return FutureImpl
static
<R> FutureImpl<R>
Futures.createSafeFuture()
          Returns thread-safe FutureImpl implementation.
static
<R> FutureImpl<R>
Futures.createUnsafeFuture()
          Returns non thread-safe FutureImpl implementation.
 FutureImpl<E> StateHolder.ConditionElement.getFuture()
           
 

Methods in org.glassfish.grizzly.utils with parameters of type FutureImpl
static
<R> void
Futures.notifyCancel(FutureImpl<R> future, CompletionHandler completionHandler)
          Complete passed FutureImpl and CompletionHandler via the cancellation notification.
static
<R> void
Futures.notifyFailure(FutureImpl<R> future, CompletionHandler completionHandler, java.lang.Throwable error)
          Complete passed FutureImpl and CompletionHandler using the passed error
static
<R> void
Futures.notifyResult(FutureImpl<R> future, CompletionHandler<R> completionHandler, R result)
          Complete passed FutureImpl and CompletionHandler using the passed result object.
static
<A,B> CompletionHandler<B>
Futures.toAdaptedCompletionHandler(FutureImpl<A> future, CompletionHandler<A> completionHandler, GenericAdapter<B,A> adapter)
          Creates CompletionHandler, which may serve as a bridge for passed FutureImpl and CompletionHandler.
static
<A,B> CompletionHandler<B>
Futures.toAdaptedCompletionHandler(FutureImpl<A> future, GenericAdapter<B,A> adapter)
          Creates CompletionHandler, which may serve as a bridge for passed FutureImpl.
static
<R> CompletionHandler<R>
Futures.toCompletionHandler(FutureImpl<R> future)
          Creates CompletionHandler, which may serve as a bridge for passed FutureImpl.
static
<R> CompletionHandler<R>
Futures.toCompletionHandler(FutureImpl<R> future, CompletionHandler<R> completionHandler)
          Creates CompletionHandler, which may serve as a bridge for passed FutureImpl and CompletionHandler objects.
 

Constructors in org.glassfish.grizzly.utils with parameters of type FutureImpl
CompletionHandlerAdapter(FutureImpl<A> future)
           
CompletionHandlerAdapter(FutureImpl<A> future, CompletionHandler<A> completionHandler)
           
CompletionHandlerAdapter(FutureImpl<A> future, CompletionHandler<A> completionHandler, GenericAdapter<B,A> adapter)
           
StateHolder.ConditionElement(Condition condition, FutureImpl<E> future, CompletionHandler<E> completionHandler)
           
 



Copyright © 2012 Oracle Corporation. All Rights Reserved.