DeferWithProgress
Description
A utility to defer execution with progress
DeferWithProgress extends Defer by providing a way to report progress during the async operation. This is useful for long-running tasks where you want to show a progress bar or status updates.
API reference
internal sealed class DeferedComponentWithProgress : IDeferA variant that reports progress (0-100%) while its real content is being prepared.
Methods
public void Refresh()Refreshes the component's rendered state.
public IDefer Debounce(int delayInMs, int millisecondsForLoadingMessage = 1000)Configures the component to debounce.
public IDefer Debounce(int delayInMs, int maxDelayInMs, int millisecondsForLoadingMessage = 1000)Configures the component to debounce.
public IDefer DoNotWaitForComponentMountingBeforeRendering()Configures the do not wait for component mounting before rendering on the component.