Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created March 25, 2022 12:33
Show Gist options
  • Save rdelrosario/068f48f4dc4513f8efcda48e17115532 to your computer and use it in GitHub Desktop.
Save rdelrosario/068f48f4dc4513f8efcda48e17115532 to your computer and use it in GitHub Desktop.
public class SimulateDownloadDataStartupTask : IStartupTask
{
public Task<bool> CanRunAsync() => Task.FromResult(true);
public Task RunAsync() => Task.Delay(5000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment