AsyncTaskManager 1.0.0
See the version list below for details.
dotnet add package AsyncTaskManager --version 1.0.0
NuGet\Install-Package AsyncTaskManager -Version 1.0.0
<PackageReference Include="AsyncTaskManager" Version="1.0.0" />
<PackageVersion Include="AsyncTaskManager" Version="1.0.0" />
<PackageReference Include="AsyncTaskManager" />
paket add AsyncTaskManager --version 1.0.0
#r "nuget: AsyncTaskManager, 1.0.0"
#:package AsyncTaskManager@1.0.0
#addin nuget:?package=AsyncTaskManager&version=1.0.0
#tool nuget:?package=AsyncTaskManager&version=1.0.0
The AsyncTaskManager package provides a wrapper utility for easily spawning/handling delegates and wrapping non-async methods as async.
It is easy for developers to struggle with Task creation and processing, but AsyncTaskStore is a light-weight solution that removes that barrier.
The AsyncTaskStore handles queuing, limiting simultaneously running tasks, auto-cancelling tasks after a set time period, and other async operations.
.Cancelling a task can also be completed without linking your own CancellationToken first (and prevents cancelling tasks that may not have been meant to be cancelled).
There are also configurable options that are used along with the AsyncTaskStore to set the way the Tasks process. Events are also configurable via options.
Available listeners:
- OnTaskCreated - Fired when a task is created via the AsyncTaskStore
- OnTaskCreationFaulted - Fired when the creation of the task fails
- OnTaskStarted - Fired when the task has been removed from the queue and begins processing
- OnTaskCompleted - Fired when the task finishes and a result is returned
- OnTaskFaulted - Fired when the delegate throws an exception
- OnTaskCancelling - Fired when a task is initially requested for cancellation
- OnTaskCancelled = Fired when a task has ended based on cancellation
- OnTaskCallbackFaulted - Fired when an assigned callback throws an exception
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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 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. |
-
net6.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.