AInq.Background
2.3.2
See the version list below for details.
dotnet add package AInq.Background --version 2.3.2
NuGet\Install-Package AInq.Background -Version 2.3.2
<PackageReference Include="AInq.Background" Version="2.3.2" />
paket add AInq.Background --version 2.3.2
#r "nuget: AInq.Background, 2.3.2"
// Install AInq.Background as a Cake Addin #addin nuget:?package=AInq.Background&version=2.3.2 // Install AInq.Background as a Cake Tool #tool nuget:?package=AInq.Background&version=2.3.2
AInq.Background
What is it?
Background work utilities for .NET Core apps based on Hosted services. Originally designed for accessing API with strict request-per-second limit.
- Background work queue with configurable parallelism and optional prioritizing
- Shared resource access queue with different resource reuse strategies and optional prioritizing
- Background data processing conveyor with different conveyor machine reuse strategies and optional prioritizing
- Work scheduler with Cron support
- Startup work utility
Packages description
AInq.Background.Abstraction
Abstraction library with no additional dependencies.
- Basic interfaces and factory classes:
- Work interfaces:
IWork
,IWork<TResult>
,IAsyncWork
,IAsyncWork<TResult>
WorkFactory
for creating simple work instances from delegates- Resource access interfaces:
IAccess<TResource>
,IAccess<TResource, TResult>
,IAsyncAccess<TResource>
,IAsyncAccess<TResource, TResult>
AccessFactory
for creating simple access instances from delegatesIConveyorMachine<TData, TResult>
for conveyor data processing machinesIActivatable
andIThrottling
for shared resources and conveyor machines with particular usage strategies
- Work interfaces:
- Service interfaces
IWorkQueue
andIPriorityWorkQueue
for background task queueIAccessQueue<TResource>
andIPriorityAccessQueue<TResource>
for shared resource access queueIConveyor<TData, TResult>
andIPriorityConveyor<TData, TResult>
for background data processing conveyorIWorkScheduler
for work scheduler
- Helpers
WorkQueueHelper
,AccessQueueHelper
,ConveyorHelper
andWorkSchedulerHelper
for accessing services from service providerWorkSchedulerQueueExtension
to enqueue scheduled tasks to current Work QueuePriorityConveyorEmulator
for usingIConveyor<TData, TResult>
asIPriorityConveyor<TData, TResult>
ConveyorChain
andPriorityConveyorChain
to combine chains of two or three conveyors
AInq.Background
Queues and conveyor implementations.
- Background work queue
- Optional support for configurable parallelism
- Optional support for prioritizing
- Use
WorkQueueInjection
to regiter service or create for internal usage
- Shared resource access queue
- Support single or many resource instances with different lifetime
- Optional support for prioritizing
- Use
AccessQueueInjection
to regiter service or create for internal usage
- Background data processing conveyor
- Support single or many conveyor machines with different lifetime
- Optional support for prioritizing
- Use
ConveyorInjection
to regiter service or create for internal usage
- Startup work utility for running some work before host start
- Support interaction with background work queue
- Use
StartupWorkInjection
to register and run works
You can extend functionality by implementing custom ITaskWrapper
, ITaskManager
or ITaskProcessor
and combine with existing ones to create more service variants.
AInq.Background.Scheduler
Work scheduler implementation.
- Support delayed, time-scheduled, and cron-scheduled work
- Use
WorkSchedulerInjection
to regiter service or create for internal usage
You can extend functionality by implementing custom IScheduledTaskWrapper
or IWorkSchedulerManager
and combine with existing ones to create more service variants.
NOTE: Cronos is used for parsing Cron expressions - follow documentation for supported options. Format with seconds is supported.
Documentation
As for now documentation is provided in this document and by XML documentation inside packages.
Contribution
These packages are in active production use, all fixes and improvements will be published after some internal testing.
If you find a bug, have a question or something else - you are friendly welcome to open an issue.
License
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 was computed. 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. |
-
.NETStandard 2.0
- AInq.Background.Abstraction (>= 2.3.2)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.0.0)
- Nito.AsyncEx (>= 5.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on AInq.Background:
Package | Downloads |
---|---|
AInq.Bitrix24.Background
Bitrix24 client integration with AInq.Background |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.6.0 | 1,267 | 11/17/2023 |
5.5.3 | 584 | 6/20/2023 |
5.5.2 | 320 | 5/23/2023 |
5.5.1 | 998 | 12/3/2022 |
5.5.0 | 624 | 11/14/2022 |
5.5.0-preview.3 | 168 | 10/24/2022 |
5.5.0-preview.2 | 173 | 10/13/2022 |
5.5.0-preview.1 | 130 | 10/2/2022 |
5.4.1 | 897 | 8/9/2022 |
5.4.0 | 1,199 | 5/11/2022 |
5.3.1 | 886 | 3/28/2022 |
5.3.1-preview.2 | 142 | 3/28/2022 |
5.3.1-preview.1 | 132 | 3/28/2022 |
5.3.0 | 856 | 3/23/2022 |
5.3.0-rc.3 | 138 | 3/20/2022 |
5.3.0-rc.2 | 131 | 3/17/2022 |
5.3.0-rc.1 | 135 | 3/16/2022 |
5.2.3 | 862 | 3/9/2022 |
5.2.2 | 627 | 12/27/2021 |
5.2.1 | 514 | 12/17/2021 |
5.2.0 | 539 | 12/13/2021 |
5.1.0 | 532 | 12/3/2021 |
5.0.0 | 693 | 11/8/2021 |
5.0.0-rc.2 | 187 | 10/12/2021 |
5.0.0-rc.1 | 163 | 10/7/2021 |
4.2.0-preview.4 | 159 | 10/6/2021 |
4.2.0-preview.3 | 204 | 9/28/2021 |
4.2.0-preview.2 | 170 | 9/15/2021 |
4.2.0-preview | 163 | 8/23/2021 |
4.1.2 | 548 | 5/14/2021 |
4.1.1.1 | 472 | 5/14/2021 |
4.1.1 | 431 | 5/10/2021 |
4.1.0 | 472 | 4/25/2021 |
4.0.1 | 541 | 3/15/2021 |
4.0.0 | 479 | 3/14/2021 |
3.0.1 | 531 | 2/28/2021 |
3.0.0 | 592 | 12/21/2020 |
2.3.2 | 734 | 7/12/2020 |
2.3.1 | 612 | 7/3/2020 |
2.3.0 | 621 | 7/2/2020 |
2.2.0 | 697 | 6/20/2020 |
2.1.0 | 618 | 6/15/2020 |
2.0.1 | 656 | 6/11/2020 |
2.0.0 | 638 | 6/9/2020 |
[FIX] Package repository info
[IMP] Minor documentation improvement