1using System.Collections.Generic;
3using System.Threading.Tasks;
Common base of entities with IDs.
Represents a long running job on the server. Model is read-only, updates attempt to cancel the job.
ValueTask< List< JobResponse > > ListActive(PaginationSettings? paginationSettings, CancellationToken cancellationToken)
List the active JobResponses in the Instance.
ValueTask< JobResponse > GetId(EntityId job, CancellationToken cancellationToken)
Get a job .
ValueTask< List< JobResponse > > List(PaginationSettings? paginationSettings, CancellationToken cancellationToken)
List the JobResponses in the Instance.
ValueTask Cancel(JobResponse job, CancellationToken cancellationToken)
Cancels a job .