ArcFM Engine Developer Guide
WorkerThread Constructor(DelegatedThreadStart,String)
Example 


Constructs an WorkerThread object, without starting the underlying thread. Must call Start() as well.
Syntax
'Declaration
 
Public Function New( _
   ByVal start As DelegatedThreadStart, _
   ByVal name As String _
)
'Usage
 
Dim start As DelegatedThreadStart
Dim name As String
 
Dim instance As New WorkerThread(start, name)
public WorkerThread( 
   DelegatedThreadStart start,
   string name
)

Parameters

start
name
Example
workerThread workerThread = new WorkerThread();
workerThread.Start();
/*When you are done */
workerThread.Kill();
Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

WorkerThread Class
WorkerThread Members
Overload List

 

 


Send Comment