|
DedicatedSynchronizedOperation(Action, ActionException, Boolean) Constructor
|
Namespace: GSF.ThreadingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
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