tgstation-server 6.11.1
The /tg/station 13 server suite
Loading...
Searching...
No Matches
AsyncDelayer.cs
Go to the documentation of this file.
1using System;
2using System.Threading;
3using System.Threading.Tasks;
4
6{
9 {
11 public Task Delay(TimeSpan timeSpan, CancellationToken cancellationToken) => Task.Delay(timeSpan, cancellationToken);
12 }
13}
Task Delay(TimeSpan timeSpan, CancellationToken cancellationToken)
Create a Task that completes after a given timeSpan .A Task representing the running operation.