Josupeit.Practices.Schedulers.Abstractions
1.0.7
Prefix Reserved
dotnet add package Josupeit.Practices.Schedulers.Abstractions --version 1.0.7
NuGet\Install-Package Josupeit.Practices.Schedulers.Abstractions -Version 1.0.7
<PackageReference Include="Josupeit.Practices.Schedulers.Abstractions" Version="1.0.7" />
<PackageVersion Include="Josupeit.Practices.Schedulers.Abstractions" Version="1.0.7" />
<PackageReference Include="Josupeit.Practices.Schedulers.Abstractions" />
paket add Josupeit.Practices.Schedulers.Abstractions --version 1.0.7
#r "nuget: Josupeit.Practices.Schedulers.Abstractions, 1.0.7"
#:package Josupeit.Practices.Schedulers.Abstractions@1.0.7
#addin nuget:?package=Josupeit.Practices.Schedulers.Abstractions&version=1.0.7
#tool nuget:?package=Josupeit.Practices.Schedulers.Abstractions&version=1.0.7
Josupeit.Practices.Schedulers.Abstractions
Different parts of an application have different scheduling needs. One component may need to fire work on the thread pool without any ordering guarantee; another may need a bounded queue with back-pressure and pause support. When you program against a concrete scheduler type directly, switching strategies later requires touching every call site.
IScheduler gives you a single interface for scheduling work regardless of how or where that work is actually executed. It is deliberately broad — covering actions, functions, sync lambdas, async lambdas, and cancellable variants of each — so that call sites never need to adapt their code to fit the scheduler.
dotnet add package Josupeit.Practices.Schedulers.Abstractions
Method families
IScheduler organizes its methods into three families. Each family supports both actions (void/Task return) and functions (TResult/Task<TResult> return), and both non-cancellable and cancellable variants.
| Family | Behavior |
|---|---|
Schedule(…) |
Enqueues the work item and blocks the calling thread until it has finished |
ScheduleAsync(…) |
Enqueues the work item and returns a Task that completes when the item finishes |
UnsafeSchedule(…) / UnsafeScheduleAsync(…) |
Same as above, but does not capture the ambient ExecutionContext — useful in tight inner loops where the context-capture allocation matters |
When a scheduler is stopped, submitting work through any of these methods throws ExecutionDeclinedException.
When to use this package directly
Reference Josupeit.Practices.Schedulers.Abstractions in any component that schedules work but should not be tied to a specific scheduler implementation. For ready-made implementations, see:
Josupeit.Practices.Schedulers.TaskPool— immediate thread pool dispatch, no lifecycleJosupeit.Practices.Schedulers.Channel— FIFO queue with configurable parallelism and pause supportJosupeit.Practices.Schedulers.Core— abstract base classes for writing your own implementation
| 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. 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. |
| .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
- Josupeit.Practices.Services.Abstractions (>= 1.0.0 && < 2.0.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Josupeit.Practices.Schedulers.Abstractions:
| Package | Downloads |
|---|---|
|
Josupeit.Practices.Jobs.Scheduler
IJobFactory that routes job execution through an IScheduler for sequential ordering, bounded parallelism, and pause support. |
|
|
Josupeit.Practices.Schedulers.Core
Abstract base classes for building custom IScheduler implementations. Reduces the full IScheduler API to a single Enqueue or EnqueueAsync override with all sync/async bridging handled. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.7 | 309 | 3/10/2026 |