Uses of Interface
com.vaadin.ui.UI.DelayedCallbackRegistration
-
Packages that use UI.DelayedCallbackRegistration Package Description com.vaadin.ui -
-
Uses of UI.DelayedCallbackRegistration in com.vaadin.ui
Methods in com.vaadin.ui that return UI.DelayedCallbackRegistration Modifier and Type Method Description UI.DelayedCallbackRegistration
UI. runAfterRoundTrip(UI.DelayedCallback callback)
Executes the given callback function after a single client round-trip.UI.DelayedCallbackRegistration
UI. runAfterRoundTrip(UI.DelayedCallback callback, int numberOfRoundTripsToWait)
Executes the given callback function after the given number of client round-trips.UI.DelayedCallbackRegistration
UI. runAfterRoundTrip(UI.DelayedCallback callback, UI.DelayedCallback cancelCallback)
Executes the given callback function after a single client round-trip, or the cancel callback if the execution is cancelled throughcancel()
.UI.DelayedCallbackRegistration
UI. runAfterRoundTrip(UI.DelayedCallback callback, UI.DelayedCallback cancelCallback, int numberOfRoundTripsToWait)
Executes the given callback function after the given number of client round-trips, or the cancel callback if the execution is cancelled throughcancel()
.
-