TaskBucket 1.0.0.14-prerelease

This is a prerelease version of TaskBucket.
There is a newer version of this package available.
See the version list below for details.
dotnet add package TaskBucket --version 1.0.0.14-prerelease
NuGet\Install-Package TaskBucket -Version 1.0.0.14-prerelease
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="TaskBucket" Version="1.0.0.14-prerelease" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TaskBucket --version 1.0.0.14-prerelease
#r "nuget: TaskBucket, 1.0.0.14-prerelease"
#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 TaskBucket as a Cake Addin
#addin nuget:?package=TaskBucket&version=1.0.0.14-prerelease&prerelease

// Install TaskBucket as a Cake Tool
#tool nuget:?package=TaskBucket&version=1.0.0.14-prerelease&prerelease

Hasle free asynchronous background tasks

Product 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
8.0.0.1 72 3/21/2024
5.0.0.1 445 7/5/2022
1.0.0.14-prerelease 202 3/15/2021
1.0.0.13-prerelease 193 3/12/2021
1.0.0.12-prerelease 204 3/10/2021
1.0.0.11-prerelease 186 3/10/2021
1.0.0.10-prerelease 217 3/6/2021
1.0.0.9-prerelease 194 2/20/2021
1.0.0.8-prerelease 165 2/16/2021
1.0.0.7-prerelease 173 2/16/2021
1.0.0.6-prerelease 169 2/15/2021
1.0.0.5-prerelease 186 2/15/2021
1.0.0.4-prerelease 179 2/15/2021
1.0.0.3-prerelease 194 2/15/2021
1.0.0.2-prerelease 192 2/14/2021
1.0.0.1-prerelease 198 2/14/2021

Major refactor of underlying components, AspNet now handles the lifetime of the Scheduler. Thus the Scheduler is started and stoped by AspNet, meaning that if your background tasks are still running app shutdown will be postponed.

REMOVED | InstanceTasks, all object instances should be retrieved by DI so I removed this function.
REMOVED | TaskBucketStatus, I may replace this in the future with a debugging assistant. But for now it is gone for good.

ADDED | Scheduler allowing for better control over tasks and integration into AspNet
ADDED | TaskPriority [Low, Normal, High, Critical] these are working, but eventually will play a role in Cron Jobs.
ADDED | UseTaskBucket method, this can be used in Startup.Configure to easily add/start jobs as your App starts. Again this will be more powerful when Cron jobs are added.

CHANGED | Default thread pool size from 10 to Logical Cores available to your App as reported by .Net

IMPROVED | TaskBucketAwaiter Async methods, these methods now use Task.Delay instead of Thread.Sleep