Uses of Interface
org.glassfish.grizzly.impl.FutureImpl
Packages that use FutureImpl
Package
Description
-
Uses of FutureImpl in org.glassfish.grizzly
Methods in org.glassfish.grizzly that return FutureImplModifier and TypeMethodDescriptionprotected abstract FutureImpl<Connection>AbstractSocketConnectorHandler.connectAsync(SocketAddress remoteAddress, SocketAddress localAddress, CompletionHandler<Connection> completionHandler, boolean needFuture) protected FutureImpl<Connection>AbstractSocketConnectorHandler.makeCancellableFuture(Connection connection) -
Uses of FutureImpl in org.glassfish.grizzly.impl
Classes in org.glassfish.grizzly.impl that implement FutureImplModifier and TypeClassDescriptionfinal classFutureimplementation with the specific unmodifiable result.classSafeFutureImplimplementation.final classSimple thread-unsafeFutureimplementation. -
Uses of FutureImpl in org.glassfish.grizzly.nio
Fields in org.glassfish.grizzly.nio declared as FutureImplModifier and TypeFieldDescriptionprotected FutureImpl<Transport>NIOTransport.shutdownFutureFuture to control graceful shutdown status -
Uses of FutureImpl in org.glassfish.grizzly.nio.transport
Methods in org.glassfish.grizzly.nio.transport that return FutureImplModifier and TypeMethodDescriptionprotected FutureImpl<Connection>TCPNIOConnectorHandler.connectAsync(SocketAddress remoteAddress, SocketAddress localAddress, CompletionHandler<Connection> completionHandler, boolean needFuture) protected FutureImpl<Connection>UDPNIOConnectorHandler.connectAsync(SocketAddress remoteAddress, SocketAddress localAddress, CompletionHandler<Connection> completionHandler, boolean needFuture) Methods in org.glassfish.grizzly.nio.transport with parameters of type FutureImplModifier and TypeMethodDescriptionprotected voidTCPNIOConnectorHandler.waitNIOFuture(FutureImpl<Connection> future, CompletionHandler<Connection> completionHandler) protected voidUDPNIOConnectorHandler.waitNIOFuture(FutureImpl<Connection> future, CompletionHandler<Connection> completionHandler) Constructors in org.glassfish.grizzly.nio.transport with parameters of type FutureImplModifierConstructorDescription -
Uses of FutureImpl in org.glassfish.grizzly.ssl
Methods in org.glassfish.grizzly.ssl with parameters of type FutureImplModifier and TypeMethodDescriptionprotected voidSSLBaseFilter.getPeerCertificateChain(SSLConnectionContext sslCtx, FilterChainContext context, boolean needClientAuth, FutureImpl<Object[]> certFuture) Obtains the certificate chain for this SSL session.Constructors in org.glassfish.grizzly.ssl with parameters of type FutureImplModifierConstructorDescriptionHandshakeCompletionHandler(FutureImpl<SSLEngine> future, CompletionHandler<SSLEngine> completionHandler, SSLEngine sslEngine) -
Uses of FutureImpl in org.glassfish.grizzly.streams
Fields in org.glassfish.grizzly.streams declared as FutureImpl -
Uses of FutureImpl in org.glassfish.grizzly.utils
Methods in org.glassfish.grizzly.utils that return FutureImplModifier and TypeMethodDescriptionstatic <R> FutureImpl<R>Futures.createSafeFuture()Returns thread-safeFutureImplimplementation.static <R> FutureImpl<R>Futures.createUnsafeFuture()Returns non thread-safeFutureImplimplementation.StateHolder.ConditionElement.getFuture()Methods in org.glassfish.grizzly.utils with parameters of type FutureImplModifier and TypeMethodDescriptionstatic <R> voidFutures.notifyCancel(FutureImpl<R> future, CompletionHandler completionHandler) Complete passedFutureImplandCompletionHandlervia the cancellation notification.static <R> voidFutures.notifyFailure(FutureImpl<R> future, CompletionHandler completionHandler, Throwable error) Complete passedFutureImplandCompletionHandlerusing the passed errorstatic <R> voidFutures.notifyResult(FutureImpl<R> future, CompletionHandler<R> completionHandler, R result) Complete passedFutureImplandCompletionHandlerusing the passed result object.static <A,B> CompletionHandler<B> Futures.toAdaptedCompletionHandler(FutureImpl<A> future, CompletionHandler<A> completionHandler, GenericAdapter<B, A> adapter) static <A,B> CompletionHandler<B> Futures.toAdaptedCompletionHandler(FutureImpl<A> future, GenericAdapter<B, A> adapter) CreatesCompletionHandler, which may serve as a bridge for passedFutureImpl.static <R> CompletionHandler<R>Futures.toCompletionHandler(FutureImpl<R> future) CreatesCompletionHandler, which may serve as a bridge for passedFutureImpl.static <R> CompletionHandler<R>Futures.toCompletionHandler(FutureImpl<R> future, CompletionHandler<R> completionHandler) CreatesCompletionHandler, which may serve as a bridge for passedFutureImplandCompletionHandlerobjects.Constructors in org.glassfish.grizzly.utils with parameters of type FutureImplModifierConstructorDescriptionCompletionHandlerAdapter(FutureImpl<A> future) CompletionHandlerAdapter(FutureImpl<A> future, CompletionHandler<A> completionHandler) CompletionHandlerAdapter(FutureImpl<A> future, CompletionHandler<A> completionHandler, GenericAdapter<B, A> adapter) ConditionElement(Condition condition, FutureImpl<E> future, CompletionHandler<E> completionHandler)