Click or drag to resize

wclThread Class

The class allows to use WCL components in threads, console and service applications.
Inheritance Hierarchy
SystemObject
  wclCommonwclThread

Namespace: wclCommon
Assembly: wclCommon (in wclCommon.dll) Version: 7.11.9.0 (7.11.9.0)
Syntax
public class wclThread

The wclThread type exposes the following members.

Constructors
 NameDescription
Public methodwclThread Creates new Thread object.
Top
Properties
 NameDescription
Public propertyRunning Gets the thread state.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified Object is equal to the current Object.
(Inherited from Object)
Protected methodFinalize Frees the thread object.
(Overrides ObjectFinalize)
Public methodGetHashCodeServes as a hash function for a particular type.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Protected methodMessageReceived The method called when new message received.
Protected methodOnInitialize The method called by the thread when it just started. An application must override this method to execute initialization code.
Protected methodOnSignal This procedure is called when a signal received from the other thread.
Protected methodOnSynchronize This procedure called by the Syncrhonize method.
Protected methodOnTerminate The procedure is called when the thread is about termination. An application must execute all finalization code here.
Public methodRun Starts the Thread execution.
Public methodSignal Posts signal to the Thread.
Protected methodSynchronize Executes a method call within the main thread.
Public methodTerminate Terminates the thread.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also