Uses of Interface
dev.webfx.platform.async.Handler
Packages that use Handler
Package
Description
-
Uses of Handler in dev.webfx.platform.async
Subinterfaces of Handler in dev.webfx.platform.asyncModifier and TypeInterfaceDescriptioninterfacePromise<T>Represents the writable side of an action that may, or may not, have occurred yet.Classes in dev.webfx.platform.async that implement HandlerModifier and TypeClassDescriptionclassThis class can be used for simple handlers which don't receive any value.Methods in dev.webfx.platform.async with parameters of type HandlerModifier and TypeMethodDescriptionFuture.andThen(Handler<AsyncResult<T>> handler) Invokes the givenhandlerupon completion.static <T> Future<T>Create a future that hasn't completed yet and that is passed to thehandlerbefore it is returned.CompositeFuture.onComplete(Handler<AsyncResult<CompositeFuture>> handler) Deprecated.Future.onComplete(Handler<AsyncResult<T>> handler) Add a handler to be notified of the result.Future.onComplete(Handler<T> successHandler, Handler<Throwable> failureHandler) Add handlers to be notified on succeeded result and failed result.default CompositeFutureAdd a handler to be notified of the failed result.default CompositeFutureCompositeFuture.onSuccess(Handler<CompositeFuture> handler) Add a handler to be notified of the succeeded result. -
Uses of Handler in dev.webfx.platform.async.impl
Subinterfaces of Handler in dev.webfx.platform.async.implClasses in dev.webfx.platform.async.impl that implement HandlerMethods in dev.webfx.platform.async.impl with parameters of type HandlerModifier and TypeMethodDescriptionCompositeFutureImpl.onComplete(Handler<AsyncResult<CompositeFuture>> handler) FailedFuture.onComplete(Handler<AsyncResult<T>> handler) FutureImpl.onComplete(Handler<AsyncResult<T>> handler) FutureImpl.onComplete(Handler<T> successHandler, Handler<Throwable> failureHandler) SucceededFuture.onComplete(Handler<AsyncResult<T>> handler) CompositeFutureImpl.onSuccess(Handler<CompositeFuture> handler) -
Uses of Handler in dev.webfx.platform.windowhistory.spi
Methods in dev.webfx.platform.windowhistory.spi with parameters of type HandlerModifier and TypeMethodDescriptionvoidBrowsingHistory.listen(Handler<BrowsingHistoryLocation> listener) Listen for changes to the current location. -
Uses of Handler in dev.webfx.platform.windowhistory.spi.impl
Methods in dev.webfx.platform.windowhistory.spi.impl with parameters of type HandlerModifier and TypeMethodDescriptionvoidBrowsingHistoryBase.listen(Handler<BrowsingHistoryLocation> listener)
Future.join(List)