Soenneker.Utils.AsyncSingleton
1.0.22
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Utils.AsyncSingleton --version 1.0.22
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 1.0.22
<PackageReference Include="Soenneker.Utils.AsyncSingleton" Version="1.0.22" />
<PackageVersion Include="Soenneker.Utils.AsyncSingleton" Version="1.0.22" />
<PackageReference Include="Soenneker.Utils.AsyncSingleton" />
paket add Soenneker.Utils.AsyncSingleton --version 1.0.22
#r "nuget: Soenneker.Utils.AsyncSingleton, 1.0.22"
#:package Soenneker.Utils.AsyncSingleton@1.0.22
#addin nuget:?package=Soenneker.Utils.AsyncSingleton&version=1.0.22
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=1.0.22
Soenneker.Utils.AsyncSingleton
An externally initializing singleton that uses double-check asynchronous locking, with optional async and sync disposal
Installation
Install-Package Soenneker.Utils.AsyncSingleton
Example
The example below is a long-living HttpClient implementation using AsyncSingleton. It avoids the additional overhead of IHttpClientFactory, and doesn't rely on short-lived clients.
public class HttpRequester : IDisposable, IAsyncDisposable
{
private readonly AsyncSingleton<HttpClient> _client;
public HttpRequester()
{
// This func will lazily execute once it's retrieved the first time.
// Other threads calling this at the same moment will asynchronously wait,
// and then utilize the HttpClient that was created from the first caller.
_client = new AsyncSingleton<HttpClient>(() =>
{
var socketsHandler = new SocketsHttpHandler
{
PooledConnectionLifetime = TimeSpan.FromMinutes(10),
MaxConnectionsPerServer = 10
};
return new HttpClient(socketsHandler);
});
}
public async ValueTask Get()
{
// retrieve the singleton async, thus not blocking the calling thread
await (await _client.Get()).GetAsync("https://google.com");
}
// Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
public ValueTask DisposeAsync()
{
GC.SuppressFinalize(this);
return _client.DisposeAsync();
}
public void Dispose()
{
GC.SuppressFinalize(this);
_client.Dispose();
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Nito.AsyncEx (>= 5.1.2)
NuGet packages (17)
Showing the top 5 NuGet packages that depend on Soenneker.Utils.AsyncSingleton:
| Package | Downloads |
|---|---|
|
Soenneker.Utils.MemoryStream
An easy modern MemoryStream utility |
|
|
Soenneker.Utils.Runtime
Detects the current operating system, common hosting environments, and container execution. |
|
|
Soenneker.ServiceBus.Admin
A utility library for Azure Service Bus Administration client accessibility |
|
|
Soenneker.ServiceBus.Client
A utility library for Azure Service Bus client accessibility |
|
|
Soenneker.Communication.Sms.Client
An async thread-safe singleton for the Azure Communication Services SMS client |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.849 | 1,252 | 9/16/2026 |
| 4.0.848 | 924 | 9/16/2026 |
| 4.0.847 | 264 | 9/15/2026 |
| 4.0.845 | 45,890 | 9/12/2026 |
| 4.0.844 | 1,849 | 9/12/2026 |
| 4.0.843 | 101 | 9/12/2026 |
| 4.0.842 | 20,319 | 9/12/2026 |
| 4.0.837 | 96,070 | 9/7/2026 |
| 4.0.836 | 4,839 | 9/7/2026 |
| 4.0.835 | 57,758 | 9/4/2026 |
| 4.0.834 | 25,788 | 9/4/2026 |
| 4.0.833 | 4,481 | 9/4/2026 |
| 4.0.832 | 8,290 | 9/4/2026 |
| 4.0.831 | 19,479 | 9/3/2026 |
| 4.0.830 | 47,503 | 8/31/2026 |
| 4.0.829 | 30,181 | 8/30/2026 |
| 4.0.828 | 6,284 | 8/30/2026 |
| 4.0.826 | 13,466 | 8/30/2026 |
| 4.0.825 | 10,918 | 8/30/2026 |
| 1.0.22 | 22,046 | 5/30/2023 |