| Package | Description |
|---|---|
| com.vaadin.ui |
| Modifier and Type | Method and 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 through
cancel(). |
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 through
cancel(). |
Copyright © 2023 Vaadin Ltd. All rights reserved.