Uses of Interface
org.glassfish.grizzly.impl.FutureImpl
-
-
Uses of FutureImpl in org.glassfish.grizzly
Methods in org.glassfish.grizzly that return FutureImpl Modifier and Type Method Description protected 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 FutureImpl Modifier and Type Class Description classReadyFutureImpl<R>Futureimplementation with the specific unmodifiable result.classSafeFutureImpl<R>SafeFutureImplimplementation.classUnsafeFutureImpl<R>Simple thread-unsafeFutureimplementation. -
Uses of FutureImpl in org.glassfish.grizzly.nio
Fields in org.glassfish.grizzly.nio declared as FutureImpl Modifier and Type Field Description protected 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 FutureImpl Modifier and Type Method Description protected 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 FutureImpl Modifier and Type Method Description protected 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 FutureImpl Constructor Description RegisterAcceptedChannelCompletionHandler(FutureImpl<Connection> listener) -
Uses of FutureImpl in org.glassfish.grizzly.ssl
Methods in org.glassfish.grizzly.ssl with parameters of type FutureImpl Modifier and Type Method Description protected 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 FutureImpl Constructor Description HandshakeCompletionHandler(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 Modifier and Type Field Description protected FutureImpl<Integer>BufferedInput. future -
Uses of FutureImpl in org.glassfish.grizzly.utils
Methods in org.glassfish.grizzly.utils that return FutureImpl Modifier and Type Method Description static <R> FutureImpl<R>Futures. createSafeFuture()Returns thread-safeFutureImplimplementation.static <R> FutureImpl<R>Futures. createUnsafeFuture()Returns non thread-safeFutureImplimplementation.FutureImpl<E>StateHolder.ConditionElement. getFuture()Methods in org.glassfish.grizzly.utils with parameters of type FutureImpl Modifier and Type Method Description static <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 FutureImpl Constructor Description CompletionHandlerAdapter(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)
-