AsyncResourcePool 1.2.0
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
.NET Framework 4.7.2
This package targets .NET Framework 4.7.2. The package is compatible with this framework or higher.
dotnet add package AsyncResourcePool --version 1.2.0
NuGet\Install-Package AsyncResourcePool -Version 1.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AsyncResourcePool" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AsyncResourcePool --version 1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AsyncResourcePool, 1.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AsyncResourcePool as a Cake Addin #addin nuget:?package=AsyncResourcePool&version=1.2.0 // Install AsyncResourcePool as a Cake Tool #tool nuget:?package=AsyncResourcePool&version=1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AsyncResourcePool
Thread-safe, non-blocking, managed pool of re-usable resources, with a specified minimum and optional maximum number of resources, and optional expiry time for resources to be cleaned up if not used for a time.
Installation
dotnet add package AsyncResourcePool
Options
Behaviour of AsyncResourcePool
can be specified using AsyncResourcePoolOptions
.
Property | Default | Description |
---|---|---|
MinNumResources |
N/A | The minimum number of resources that will be maintained by the pool. This number of resources will be created regardless of whether or not they are requested. If a resource is requested an allocated, an additional resource will be created to maintain the pool size. |
MaxNumResources |
int.MaxValue |
The maximum number of resources that the pool is allowed to create. |
ResourcesExpireAfter |
null |
If a resource is unused for this time, it will be dispsosed. If this causes the number of available resources to drop below the minimum, additional resources will be created to replace the disposed ones. |
MaxNumResourceCreationAttempts |
3 |
Maximum number of attempts for creating a resource before an exception is thrown and passed back to the requestor |
ResourceCreationRetryInterval |
1 second | Amount of time to wait after a failed resource creation attempt before trying again |
Example usage: Connection Pool for Snowflake Connector for .NET
https://github.com/snowflakedb/snowflake-connector-net
- Define a
ConnectionPool
class which consumesAsyncResourcePool
internally
public sealed class ConnectionPool
{
private readonly IAsyncResourcePool<SnowflakeDbConnection> _resourcePool;
public ConnectionPool(string connectionString)
{
var connectionFactory = GetConnectionFactoryFunc(connectionString);
var asyncResourcePoolOptions = new AsyncResourcePoolOptions(
minNumResources: 20,
resourcesExpireAfter: TimeSpan.FromMinutes(15));
_resourcePool = new AsyncResourcePool<SnowflakeDbConnection>(connectionFactory, asyncResourcePoolOptions);
}
public Task<ReusableResource<SnowflakeDbConnection>> Get(CancellationToken cancellationToken) => _resourcePool.Get(cancellationToken);
public void Dispose() => _resourcePool.Dispose();
private static Func<Task<SnowflakeDbConnection>> GetConnectionFactoryFunc(string connectionString)
{
return async () =>
{
var conn = new SnowflakeDbConnection
{
ConnectionString = connectionString
};
await conn.OpenAsync();
return conn;
};
}
}
- Optionally register
ConnectionPool
asSingleton
in dependency injection configuration
services.AddSingleton<ConnectionPool>(sp => new ConnectionPool(...));
- Consume
ConnectionPool
public class ConnectionConsumer
{
private readonly ConnectionPool _connectionPool;
public ConnectionConsumer(ConnectionPool connectionPool) {
_connectionPool = connectionPool;
}
public async Task DoSomething(CancellationToken cancellationToken) {
using (var reusableConnection = await _connectionPool.Get(cancellationToken)) {
var connection = reusableConnection.Resource;
// Do something with the connection
}
}
}
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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.7.2
- System.Threading.Tasks.Dataflow (>= 4.9.0)
-
.NETStandard 2.0
- System.Threading.Tasks.Dataflow (>= 4.9.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.