Uses of Record Class
com.vaadin.flow.component.trigger.internal.PromiseAction.Error
Packages that use PromiseAction.Error
Package
Description
Server-side access to the browser's clipboard ? both writing (copy) and
reading (paste).
Server-side access to the browser's Fullscreen API.
Trigger API and its internal wiring.
Server-side access to the browser's Web Share API, which opens the device's
native share sheet so the user can send a title, text, and/or URL to another
app.
-
Uses of PromiseAction.Error in com.vaadin.flow.component.clipboard
Method parameters in com.vaadin.flow.component.clipboard with type arguments of type PromiseAction.ErrorModifier and TypeMethodDescriptionvoidClipboardBinding.writeImage(Component source, SerializableRunnable onCopied, SerializableConsumer<PromiseAction.Error> onError) LikeClipboardBinding.writeImage(Component)but reports the outcome back to the server.voidClipboardBinding.writeImage(DownloadHandler handler, SerializableRunnable onCopied, SerializableConsumer<PromiseAction.Error> onError) LikeClipboardBinding.writeImage(DownloadHandler)but reports the outcome back to the server. -
Uses of PromiseAction.Error in com.vaadin.flow.component.fullscreen
Method parameters in com.vaadin.flow.component.fullscreen with type arguments of type PromiseAction.ErrorModifier and TypeMethodDescriptionvoidFullscreenBinding.enter(Component component, SerializableRunnable onSuccess, SerializableConsumer<PromiseAction.Error> onError) LikeFullscreenBinding.enter(Component)but reports the outcome back to the server.voidFullscreenBinding.enter(SerializableRunnable onSuccess, SerializableConsumer<PromiseAction.Error> onError) LikeFullscreenBinding.enter()but reports the outcome back to the server. -
Uses of PromiseAction.Error in com.vaadin.flow.component.trigger.internal
Constructor parameters in com.vaadin.flow.component.trigger.internal with type arguments of type PromiseAction.ErrorModifierConstructorDescriptionRequestFullscreenAction(Component target, SerializableRunnable onSuccess, SerializableConsumer<PromiseAction.Error> onError) Creates a component-level fullscreen action whose outcome is reported back to the server.RequestFullscreenAction(SerializableRunnable onSuccess, SerializableConsumer<PromiseAction.Error> onError) Creates a page-level fullscreen action whose outcome is reported back to the server.ShareAction(@Nullable Action.Input<String> titleInput, @Nullable Action.Input<String> textInput, @Nullable Action.Input<String> urlInput, SerializableRunnable onShared, SerializableConsumer<PromiseAction.Error> onError) Creates a share action whose outcome is reported back to the server.WriteToClipboardAction(Action.Input<?> imageInput, SerializableRunnable onCopied, SerializableConsumer<PromiseAction.Error> onError) Creates an image clipboard-copy action whose outcome is reported back to the server.