tgstation-server 5.12.7
The /tg/station 13 server suite
Loading...
Searching...
No Matches
IDatabaseContextFactory.cs
Go to the documentation of this file.
1using System;
2using System.Threading.Tasks;
3
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.
Task UseContext(Func< IDatabaseContext, Task > operation)
Run an operation in the scope of an IDatabaseContext.