tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
IJobsClient.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Threading;
3using System.Threading.Tasks;
4
7
9{
47}
Common base of entities with IDs.
Definition EntityId.cs:7
Represents a long running job on the server. Model is read-only, updates attempt to cancel the job.
Definition JobResponse.cs:7
Settings for a paginated request.
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 .