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