AInq.Background.Enumerable
4.1.2
See the version list below for details.
dotnet add package AInq.Background.Enumerable --version 4.1.2
NuGet\Install-Package AInq.Background.Enumerable -Version 4.1.2
<PackageReference Include="AInq.Background.Enumerable" Version="4.1.2" />
paket add AInq.Background.Enumerable --version 4.1.2
#r "nuget: AInq.Background.Enumerable, 4.1.2"
// Install AInq.Background.Enumerable as a Cake Addin #addin nuget:?package=AInq.Background.Enumerable&version=4.1.2 // Install AInq.Background.Enumerable as a Cake Tool #tool nuget:?package=AInq.Background.Enumerable&version=4.1.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
New in 4.1
- BREAKING CHANGES
- Startup work utility moved to separate package AInq.Background.Startup
- Minor bug fix and internal optimization
New in 4.0
- BREAKING CHANGES
- Background work Scheduler interfaces moved to separate package AInq.Background.Scheduler.Abstraction
- Background work Scheduler now uses
Try
andMaybe
from AInq.Optional to pass errors logically correct to Observable
- Background work Scheduler now uses System.Reactive instead of custom buggy
IObservable<T>
implementation
New in 3.0
- GENERAL BUGFIX
- New features
- Service interaction extensions
- Batch processing extension
- Repeated work in
IWorkScheduler
- Work reslts in
IWorkScheduler
- Refactoring
- Simplify basic interfaces: non-basic methods moved to extensions
- Cleanup Helers and Extensions classes struct
- BREAKING CHANGES
- Removed some unsued methods from
WorkFactory
andAccessFactory
- Some extension methods moved form
AInq.Background.Helpers
namespace toAInq.Background.Extensions
andAInq.Background.Interaction
IActivatable
IStartStopppable
- Removed some unsued methods from
Packages description
AInq.Background.Abstraction
Basic interfaces and helpers library.
- 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 conveyor
- Helpers and extensions including methods to use services together (eg. enqueue
IAccess<TResource>
toIWorkQueue
) if needed
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
You can extend functionality by implementing custom ITaskWrapper
, ITaskManager
or ITaskProcessor
and combine with existing ones to create more service variants.
AInq.Background.Scheduler.Abstraction
Work scheduler interfaces and helpers library.
- Service interfaces
IWorkScheduler
for background work scheduler
- Helpers and extensions including methods to use services together (eg. schedule
IAccess<TResource>
toIWorkScheduler
) if needed
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.
AInq.Background.Enumerable
NEW Batch processing extensions for IWorkQueue
, IAccessQueue<TResource>
and IConveyor<TData, TResult>
AInq.Background.Startup
NEW Startup work utility for running some work before host start
Support interaction with background work queue
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
Copyright � 2020-2021 Anton Andryushchenko. AInq.Background is licensed under Apache License 2.0
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. 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 is compatible. |
.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 (>= 4.1.2)
- Microsoft.Bcl.AsyncInterfaces (>= 5.0.0)
- System.Threading.Channels (>= 5.0.0)
-
.NETStandard 2.1
- AInq.Background.Abstraction (>= 4.1.2)
- System.Threading.Channels (>= 5.0.0)
-
net5.0
- AInq.Background.Abstraction (>= 4.1.2)
- System.Threading.Channels (>= 5.0.0)
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 |
---|---|---|
5.6.0 | 262 | 11/17/2023 |
5.5.3 | 188 | 6/20/2023 |
5.5.2 | 163 | 5/23/2023 |
5.5.1 | 326 | 12/3/2022 |
5.5.0 | 342 | 11/14/2022 |
5.5.0-preview.3 | 110 | 10/24/2022 |
5.5.0-preview.2 | 109 | 10/13/2022 |
5.5.0-preview.1 | 118 | 10/2/2022 |
5.4.1 | 443 | 8/9/2022 |
5.4.0 | 461 | 5/11/2022 |
5.3.1 | 458 | 3/28/2022 |
5.3.1-preview.2 | 125 | 3/28/2022 |
5.3.1-preview.1 | 129 | 3/28/2022 |
5.3.0 | 434 | 3/23/2022 |
5.3.0-rc.3 | 122 | 3/20/2022 |
5.3.0-rc.2 | 129 | 3/17/2022 |
5.3.0-rc.1 | 126 | 3/16/2022 |
5.2.3 | 453 | 3/9/2022 |
5.2.2 | 315 | 12/27/2021 |
5.2.1 | 320 | 12/17/2021 |
5.2.0 | 310 | 12/13/2021 |
5.1.0 | 307 | 12/3/2021 |
5.0.0 | 352 | 11/8/2021 |
5.0.0-rc.2 | 154 | 10/12/2021 |
5.0.0-rc.1 | 147 | 10/7/2021 |
4.2.0-preview.4 | 152 | 10/6/2021 |
4.2.0-preview.3 | 189 | 9/28/2021 |
4.2.0-preview.2 | 155 | 9/15/2021 |
4.2.0-preview | 151 | 8/23/2021 |
4.1.2 | 405 | 5/14/2021 |
4.1.1.1 | 341 | 5/14/2021 |
4.1.1 | 371 | 5/10/2021 |
4.0.0 | 391 | 3/14/2021 |
3.0.0 | 524 | 12/21/2020 |
[FIX] Add missed overloads