6 references to AsyncLazy
Microsoft.AspNetCore.Razor.Utilities.Shared.UnitTests (4)
Threading\AsyncLazyTests.cs (4)
25
var lazy =
AsyncLazy
.Create(static c => Task.FromResult(5));
42
var lazy =
AsyncLazy
.Create<object, ManualResetEvent>(
78
var lazy =
AsyncLazy
.Create(static (cancellationTokenSource, c) => Task.Run((Func<object>)(() =>
107
var lazy =
AsyncLazy
.Create<object>(async c =>
Microsoft.VisualStudio.LanguageServices.Razor (2)
Remote\RemoteServiceInvoker.cs (2)
48
private readonly AsyncLazy<RazorRemoteHostClient> _lazyMessagePackClient =
AsyncLazy
.Create(GetMessagePackClientAsync, workspaceProvider);
49
private readonly AsyncLazy<RazorRemoteHostClient> _lazyJsonClient =
AsyncLazy
.Create(GetJsonClientAsync, workspaceProvider);