tgstation-server  4.3.2
The /tg/station 13 server suite
IDmbFactory.cs
Go to the documentation of this file.
1 using Microsoft.Extensions.Hosting;
2 using System;
3 using System.Threading;
4 using System.Threading.Tasks;
6 
7 namespace Tgstation.Server.Host.Components.Deployment
8 {
13  {
18  Task OnNewerDmb { get; }
19 
23  bool DmbAvailable { get; }
24 
30  IDmbProvider LockNextDmb(int lockCount);
31 
38  Task<IDmbProvider> FromCompileJob(CompileJob compileJob, CancellationToken cancellationToken);
39 
45  Task CleanUnusedCompileJobs(CancellationToken cancellationToken);
46  }
47 }
Provides absolute paths to the latest compiled .dmbs
Definition: IDmbProvider.cs:9