Class TaskMonitor
Component that monitors task that are trackable (that is associated with a Tracking
Inheritance
Namespace: EPiServer.Async
Assembly: EPiServer.Framework.dll
Version: 12.0.3Syntax
public abstract class TaskMonitor : Object
Constructors
TaskMonitor()
Declaration
protected TaskMonitor()
Methods
GetStatus(TrackingToken)
Retrieves a the specific TasktrackingToken
.
Declaration
public abstract TaskInformation GetStatus(TrackingToken trackingToken)
Parameters
Type | Name | Description |
---|---|---|
Tracking |
trackingToken | The Tracking |
Returns
Type | Description |
---|---|
Task |
Information and outcome about the task. |
Remarks
The persisting of task information is done asynchronusly meaning there is no guarantee that status has been persisted when task is completed.
GetStatus<TResult>(TrackingToken)
Retrieves a the specific TaskInformation<T> that is associated with trackingToken
.
Declaration
public TaskInformation<TResult> GetStatus<TResult>(TrackingToken trackingToken)
where TResult : new()
Parameters
Type | Name | Description |
---|---|---|
Tracking |
trackingToken | The Tracking |
Returns
Type | Description |
---|---|
Task |
Information and result about the task. |
Type Parameters
Name | Description |
---|---|
TResult | The type of result from the task created from Task |
Remarks
The persisting of task information is done asynchronusly meaning there is no guarantee that status has been persisted when task is completed.