Click or drag to resize

MixedSynchronizedOperation Class

Represents an operation that cannot run while it is already in progress.
Inheritance Hierarchy
SystemObject
  GSF.ThreadingSynchronizedOperationBase
    GSF.ThreadingMixedSynchronizedOperation

Namespace: GSF.Threading
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public class MixedSynchronizedOperation : SynchronizedOperationBase
View Source

The MixedSynchronizedOperation type exposes the following members.

Constructors
 NameDescription
Public methodMixedSynchronizedOperation(Action) Creates a new instance of the MixedSynchronizedOperation class.
Public methodMixedSynchronizedOperation(Action, ActionException) Creates a new instance of the MixedSynchronizedOperation class.
Top
Properties
 NameDescription
Public propertyAsynchronousExecutionMode Gets or sets the mode of execution used to execute the action asynchronously.
Public propertyCurrentExecutionMode Gets the execution mode of the currently executing action.
Public propertyIsPending Gets a value to indiate whether the synchronized operation has an additional operation that is pending execution after the currently running action has completed.
(Inherited from SynchronizedOperationBase)
Public propertyIsRunning Gets a value to indicate whether the synchronized operation is currently executing its action.
(Inherited from SynchronizedOperationBase)
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodExecuteAction Executes the action once on the current thread.
(Inherited from SynchronizedOperationBase)
Protected methodExecuteActionAsync Executes the action on a separate thread.
(Overrides SynchronizedOperationBaseExecuteActionAsync)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(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)
Public methodRun Executes the action on this thread or marks the operation as pending if the operation is already running.
(Inherited from SynchronizedOperationBase)
Public methodRunOnce Executes the action on this thread or marks the operation as pending if the operation is already running.
(Inherited from SynchronizedOperationBase)
Public methodRunOnceAsync Executes the action on another thread or marks the operation as pending if the operation is already running.
(Inherited from SynchronizedOperationBase)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Public methodTryRun Attempts to execute the action on this thread. Does nothing if the operation is already running.
(Inherited from SynchronizedOperationBase)
Public methodTryRunOnce Attempts to execute the action on this thread. Does nothing if the operation is already running.
(Inherited from SynchronizedOperationBase)
Public methodTryRunOnceAsync Attempts to execute the action on another thread. Does nothing if the operation is already running.
(Inherited from SynchronizedOperationBase)
Top
Extension Methods
 NameDescription
Public Extension MethodGetEnumValueOrDefault Gets the enumeration constant for value, if defined in the enumeration, or a default value.
(Defined by EnumExtensions)
Public Extension MethodGetEnumValueOrDefaultT Gets the enumeration constant for this value, if defined in the enumeration, or a default value.
(Defined by EnumExtensions)
Top
Remarks
The behavior of asynchronous executions will depend on the value of the AsynchronousExecutionMode property. When using the short asynchronous execution mode, refer to the ShortSynchronizedOperation class for a description of the behavior of this class. When using the long asynchronous execution mode, refer to the LongSynchronizedOperation class. Actions executed by this class will always be executed on a background thread, even when using the long asynchronous execution mode.
See Also