Class TaskInformationStorage
Component that manages persistance of Task
Inheritance
System.Object
TaskInformationStorage
Namespace: EPiServer.Async.Internal
Assembly: EPiServer.Framework.dll
Version: 12.0.3Syntax
public abstract class TaskInformationStorage : Object
Remarks
The implementation is not guaranteed to be thread safe, so if used from singleton instances recommendation is to access instance through usage of ServiceAccessor<TService>.
Constructors
TaskInformationStorage()
Declaration
protected TaskInformationStorage()
Properties
MonitoredTaskTruncateLimit
The amount of time before a monitored task will be removed.
Declaration
public static TimeSpan MonitoredTaskTruncateLimit { get; set; }
Property Value
Type | Description |
---|---|
System. |
Remarks
Default value is 30 days
Methods
Delete(Guid)
Deletes the Task
Declaration
public abstract void Delete(Guid taskInformationId)
Parameters
Type | Name | Description |
---|---|---|
System. |
taskInformationId |
Load(Guid)
Loads a persisted Task
Declaration
public abstract TaskInformation Load(Guid taskInformationId)
Parameters
Type | Name | Description |
---|---|---|
System. |
taskInformationId |
Returns
Type | Description |
---|---|
Task |
Save(TaskInformation)
Persists a Task
Declaration
public abstract void Save(TaskInformation task)
Parameters
Type | Name | Description |
---|---|---|
Task |
task | The Task |
Tasks()
Returns a queryable where Linq can be used to get a filtered result.
Declaration
public abstract IOrderedQueryable<TaskInformation> Tasks()
Returns
Type | Description |
---|---|
System. |