|
DedicatedSynchronizedOperation(Action, ActionException, Boolean) Constructor
|
Namespace: GSF.ThreadingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.250-beta+e1aac152bf9c38c67035c6d283461f222e39e02a
Syntaxpublic DedicatedSynchronizedOperation(
Action action,
Action<Exception> exceptionAction,
bool isBackground
)
Public Sub New (
action As Action,
exceptionAction As Action(Of Exception),
isBackground As Boolean
)
public:
DedicatedSynchronizedOperation(
Action^ action,
Action<Exception^>^ exceptionAction,
bool isBackground
)
new :
action : Action *
exceptionAction : Action<Exception> *
isBackground : bool -> DedicatedSynchronizedOperation
GSF.Threading.DedicatedSynchronizedOperation = function(action, exceptionAction, isBackground);
View SourceParameters
- action Action
- The action to be performed during this operation.
- exceptionAction ActionException
- The action to be performed if an exception is thrown from the action.
- isBackground Boolean
- Specifies if this operation will be a background thread.
See Also