ThreadedCalculationExecuteWorker Method |
Implement this method to perform the calculation. It is called
NumberOfThreads times,
each call in a separate thread.
Namespace:
AGI.Foundation.Infrastructure.Threading
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax protected abstract void ExecuteWorker(
int threadNumber
)
Protected MustOverride Sub ExecuteWorker (
threadNumber As Integer
)
protected:
virtual void ExecuteWorker(
int threadNumber
) abstract
abstract ExecuteWorker :
threadNumber : int -> unit
Parameters
- threadNumber
- Type: SystemInt32
The number of the thread, starting at 0 and increasing to NumberOfThreads - 1.
See Also