We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.component.
Package com.vaadin.flow.component
Annotation Interface DebounceSettings
public @interface DebounceSettings
Debounce settings for declaratively defined client-side event handlers.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionGets an array of debounce phases for which the event should be sent to the server.
int
Gets the debounce timeout to use.
-
Element Details
-
timeout
int timeoutGets the debounce timeout to use.
Returns:
the debounce timeout in milliseconds, or 0 to disable debouncing.
-
phases
DebouncePhase[] phasesGets an array of debounce phases for which the event should be sent to the server. There must be at least one phase.
Returns:
an array of debounce phases
See Also:
-