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 DeferedComponent variant that reports progress (0-100%) while its real content is being prepared.
- Namespace
- Tesserae
- Implements
- IDefer
Methods
| Name | Description |
|---|---|
| Refresh | Refreshes the component's rendered state. |
| RefreshAsync | Refreshes the async. |
| Debounce | Configures the component to debounce. |
| DoNotWaitForComponentMountingBeforeRendering | Configures the do not wait for component mounting before rendering on the component. |
| Render | Renders the component's root HTML element. |
public void Refresh()Refreshes the component's rendered state.
| Overload | |
|---|---|
| Debounce(int, int) | Configures the component to debounce. |
| Debounce(int, int, int) | Configures the component to debounce. |
public IDefer DoNotWaitForComponentMountingBeforeRendering()Configures the do not wait for component mounting before rendering on the component.