CancellableOperationT Class
Class that can be cancelled.
- The class holds a reference to the system threaded
Task that will
- process the cancellable logic.
- Holds a cancellation token source linked to the token passed via the constructor.
Namespace: MFiles.VAF.MultiserverModeAssembly: MFiles.VAF (in MFiles.VAF.dll) Version: 24.1.706.1
public abstract class CancellableOperation<T>
where T : class, IDeepCloneable
- Inheritance
- Object CancellableOperationT
- Derived
Type Parameters
- T
- Backing data object.
Data
|
Data value clone container.
|
LinkedTokenSource
|
Protected linked cancellation token source.
- Used to request cancellation of the process.
|
Task
|
The system task that processes this operation.
|
Token
|
Linked cancellation token.
|