tgstation-server  4.4.0
The /tg/station 13 server suite
IDatabaseContextFactory.cs
Go to the documentation of this file.
1 using System;
2 using System.Threading.Tasks;
3 
4 namespace Tgstation.Server.Host.Database
5 {
9  public interface IDatabaseContextFactory
10  {
16  Task UseContext(Func<IDatabaseContext, Task> operation);
17  }
18 }
Factory for scoping usage of IDatabaseContexts. Meant for use by Components