PowerThreadPool 4.0.1

dotnet add package PowerThreadPool --version 4.0.1
NuGet\Install-Package PowerThreadPool -Version 4.0.1
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="PowerThreadPool" Version="4.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PowerThreadPool --version 4.0.1
#r "nuget: PowerThreadPool, 4.0.1"
#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 PowerThreadPool as a Cake Addin
#addin nuget:?package=PowerThreadPool&version=4.0.1

// Install PowerThreadPool as a Cake Tool
#tool nuget:?package=PowerThreadPool&version=4.0.1

PowerThreadPool

icon

Nuget Nuget GitHub release (with filter) GitHub Repo stars GitHub Workflow Status (with event) Codecov

An comprehensive and efficient lock-free thread pool with granular work control, flexible concurrency, and robust error handling, alongside an easy-to-use API for diverse task submissions.

Documentation

Read the Wiki here.

Installation

If you want to include PowerThreadPool in your project, you can install it directly from NuGet.
Support: Net45+ | Net5.0+ | netstandard2.0+

Features

Getting started

Simple example: run a work

PowerPool powerPool = new PowerPool(new PowerPoolOption() { /* Some options */ });
powerPool.QueueWorkItem(() => 
{
    // Do something
});

With callback

PowerPool powerPool = new PowerPool(new PowerPoolOption() { /* Some options */ });
powerPool.QueueWorkItem(() => 
{
    // Do something
    return result;
}, (res) => 
{
    // Callback of the work
});

With option

PowerPool powerPool = new PowerPool(new PowerPoolOption() { /* Some options */ });
powerPool.QueueWorkItem(() => 
{
    // Do something
    return result;
}, new WorkOption()
{
    // Some options
});

Reference

string QueueWorkItem<T1, ...>(Action<T1, ...> action, T1 param1, ..., *);
string QueueWorkItem(Action action, *);
string QueueWorkItem(Action<object[]> action, object[] param, *);
string QueueWorkItem<T1, ..., TResult>(Func<T1, ..., TResult> function, T1 param1, ..., *);
string QueueWorkItem<TResult>(Func<TResult> function, *);
string QueueWorkItem<TResult>(Func<object[], TResult> function, object[] param, *);
  • Asterisk (*) denotes an optional parameter, either a WorkOption or a delegate (Action<ExecuteResult<object>> or Action<ExecuteResult<TResult>>), depending on whether the first parameter is an Action or a Func.
  • In places where you see ellipses (...), you can provide up to five generic type parameters.
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 is compatible.  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 is compatible. 
.NET Framework net45 is compatible.  net451 is compatible.  net452 is compatible.  net46 is compatible.  net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 is compatible. 
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.5

    • No dependencies.
  • .NETFramework 4.5.1

    • No dependencies.
  • .NETFramework 4.5.2

    • No dependencies.
  • .NETFramework 4.6

    • No dependencies.
  • .NETFramework 4.6.1

    • No dependencies.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETFramework 4.7

    • No dependencies.
  • .NETFramework 4.7.1

    • No dependencies.
  • .NETFramework 4.7.2

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • .NETFramework 4.8.1

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net5.0

    • No dependencies.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.1 35 4/27/2024
4.0.0 74 4/24/2024
3.2.0 77 4/22/2024
3.1.0 83 4/20/2024
3.0.0 61 4/18/2024
2.5.11 81 4/15/2024
2.5.10 73 4/12/2024
2.5.9 73 4/8/2024
2.5.8 96 3/26/2024
2.5.7 97 3/22/2024
2.5.6 94 3/12/2024
2.5.5 110 3/2/2024
2.5.4 78 2/29/2024
2.5.3 91 2/29/2024
2.5.2 102 2/26/2024
2.5.1 91 2/25/2024
2.5.0 117 2/8/2024
2.4.0 180 12/5/2023
2.3.0 81 12/5/2023
2.2.3 82 12/4/2023
2.2.2 83 12/3/2023
2.2.1 123 11/21/2023
2.2.0 86 11/12/2023
2.1.4 68 11/11/2023
2.1.3 71 11/11/2023
2.1.2 80 11/11/2023
2.1.1 84 11/6/2023
2.1.0 74 11/5/2023
2.0.1 104 10/23/2023
2.0.0 100 10/22/2023
1.5.10 114 9/24/2023
1.5.9 102 9/24/2023
1.5.8 90 9/18/2023
1.5.7 80 9/17/2023
1.5.6 102 9/8/2023
1.5.5 104 9/7/2023
1.5.4 109 9/6/2023
1.5.3 112 9/5/2023
1.5.2 94 9/4/2023
1.5.1 114 9/3/2023
1.5.0 110 9/2/2023
1.4.5 108 9/1/2023
1.4.4 98 9/1/2023
1.4.3 100 8/31/2023
1.4.2 103 8/30/2023
1.4.1 176 8/30/2023
1.4.0 132 8/30/2023
1.3.2 120 8/29/2023
1.3.1 119 8/28/2023
1.3.0 127 8/28/2023
1.2.1 120 8/28/2023
1.2.0 120 8/27/2023
1.1.0 131 8/27/2023
1.0.2 113 8/26/2023
1.0.1 115 8/26/2023
1.0.0 118 8/26/2023