Increments the count of running threads.
Namespace: CleanCode.ThreadingAssembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
public void IncrThreadCount(
string threadName
)
public void IncrThreadCount(
string threadName
)
Public Sub IncrThreadCount ( _
threadName As String _
)
Public Sub IncrThreadCount ( _
threadName As String _
)
public:
void IncrThreadCount(
String^ threadName
)
public:
void IncrThreadCount(
String^ threadName
)
Parameters
- threadName
- Type: System String
Display name of the thread.
Called by the
Run method internally;
should not need to be called elsewhere.
Left with a public signature for symmetry with
DecrThreadCount(String) which must be called
by
ThreadWorker workers.