IAsyncProgressReportT Method
Reports a progress update to any arbitrary state.
For parallel operations it is recommended to use the
Increment method
after starting a new progress because this method cannot guarantee that
CurrentValue will be a strictly
increasing value when called from
Parallel members, for example.
Namespace: KGySoft.ThreadingAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.0.0
void Report<T>(
AsyncProgress<T> progress
)
Sub Report(Of T) (
progress As AsyncProgress(Of T)
)
generic<typename T>
void Report(
AsyncProgress<T> progress
)
abstract Report :
progress : AsyncProgress<'T> -> unit
- progress AsyncProgressT
- The value of the updated progress.
- T
- The type of the OperationType property in the specified progress.