Click or drag to resize
CMSThread Class
CMS managed thread.
Inheritance Hierarchy

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 9.0.0
Syntax
C#
public class CMSThread : AbstractWorker, IDisposable

The CMSThread type exposes the following members.

Constructors
  NameDescription
Public methodCMSThread(ThreadStart, ThreadSettings)
Constructor.
Public methodCMSThread(ThreadStart, Boolean, ThreadModeEnum)
Constructor.
Top
Fields
  NameDescription
Public fieldStatic memberABORT_REASON_STOP
Thread was stopped by the user.
Top
Properties
  NameDescription
Public propertyAllowAsyncActions
Indicates if new threads can be created within this thread. (By default no new threads are created.)
Public propertyCancel
If true, the worker is cancelled (doesn't execute)
(Inherited from AbstractWorker.)
Public propertyConnectionString
Connection string name that the thread should use to access the database
Public propertyInnerThread
Worker object.
Public propertyIsBackground
Defines if a thread is a background thread
Public propertyLog
Logs for long running operations.
Public propertyMethodClassName
Name of the class which is running the thread actions.
Public propertyMethodName
Name of the method which is running the thread actions.
Public propertyMode
If true, the thread runs synchronously
Public propertyPriority
Specifies the scheduling priority.
Public propertyRequestUrl
Request URL which created the thread.
Public propertyRunInSequence
If true, the thread is a part of the sequence and should perform the actions after the previous thread finishes.
(Inherited from AbstractWorker.)
Public propertyStatic memberRunningThreads
Counter of running Threads.
Public propertyThreadFinished
Time when the thread finished.
Public propertyThreadGUID
Thread GUID.
Public propertyThreadID
Thread ID.
Public propertyThreadStarted
Time when the thread started.
Top
Methods
  NameDescription
Public methodAbort
Aborts the thread execution. In case of sync mode thread, this method also kills all CMSThreads running under same InnerThread.
Public methodStatic memberAllowEmptyContext
Allows anonymous thread to use new dedicated context in subsequent calls. Call this method in case the anonymous thread isn't initiated from a request thread, or in case you want to start with an empty thread context on purpose.
Protected methodCloseThreadContext
Closes the thread context.
Public methodDispose
Disposes the thread object.
Public methodStatic memberGetCurrentThreadId
Gets the current thread ID
Public methodGetDuplicityKey
Gets the duplicity key for the worker to eliminate duplicit queued workers.
(Inherited from AbstractWorker.)
Public methodStatic memberGetThread
Finds the thread based on the given GUID.
Public methodJoin
Blocks the calling thread until a thread terminates, while continuing to perform standard COM and SendMessage pumping.
Public methodLoadTargetDelegateInfo
Sets the target delegate information
Protected methodPrepareEmptyThreadContext
Prepares empty thread context for thread with UseEmptyContext set.
Protected methodPrepareThreadContext
Prepares the thread context
Protected methodRaiseStop
Raises OnStop event.
(Inherited from AbstractWorker.)
Public methodRun
Runs the action.
(Overrides AbstractWorkerRun.)
Public methodRunAsync
Runs the worker as a new thread. For internal purposes only, use method Start instead.
(Overrides AbstractWorkerRunAsync.)
Public methodStart
Starts the thread.
Public methodStop
Stops the thread execution (doesn't log abort exception). In case of sync mode thread, this method only stops this and child synchronous threads. Parent threads running under same InnerThread will continue running.
Public methodStatic memberStopped
Returns true if thread was aborted with ABORT_REASON_STOP state info e.g. Thread.Abort(CMSThread.ABORT_REASON_STOP);
Public methodStatic memberWaitForSequence
Waits for the current sequence thread to terminate
Public methodStatic memberWrap(Action, Boolean)
Wraps the given method into CMSThread context
Public methodStatic memberWrapT(ActionT, Boolean)
Wraps the given method into CMSThread context
Public methodStatic memberWrapT1, T2(ActionT1, T2, Boolean)
Wraps the given method into CMSThread context
Public methodStatic memberWrapFuncTResult(FuncTResult, Boolean)
Wraps the given method into CMSThread context
Public methodStatic memberWrapFuncT1, TResult(FuncT1, TResult, Boolean)
Wraps the given method into CMSThread context
Top
Events
  NameDescription
Public eventOnStop
Raised when worker finishes.
(Inherited from AbstractWorker.)
Top
See Also