Delegate ProfilerProvider
Namespace: Moth.Tasks
Assembly: Moth.Tasks.dll
Syntax
public delegate IProfiler ProfilerProvider(Worker worker);
Parameters
Type | Name | Description |
---|---|---|
Worker | worker | The Worker. |
Returns
Type | Description |
---|---|
IProfiler | An IProfiler for the |
Remarks
The method does not have to provide a unique IProfiler for each Worker, yet in that case it must be able to differentiate between Workers on its own, so as their calls to BeginTask(String) and EndTask() don't interfere.