DispatchSharp 1.1.2
See the version list below for details.
dotnet add package DispatchSharp --version 1.1.2
NuGet\Install-Package DispatchSharp -Version 1.1.2
<PackageReference Include="DispatchSharp" Version="1.1.2" />
paket add DispatchSharp --version 1.1.2
#r "nuget: DispatchSharp, 1.1.2"
// Install DispatchSharp as a Cake Addin #addin nuget:?package=DispatchSharp&version=1.1.2 // Install DispatchSharp as a Cake Tool #tool nuget:?package=DispatchSharp&version=1.1.2
DispatchSharp
https://www.nuget.org/packages/DispatchSharp/
A library to make multi-threaded dispatch code more testable.
Models a job dispatch pattern and provides both threaded and non threaded implementations.
Getting Started
Doing a batch of work:
void DoBatch(IEnumerable<object> workToDo) {
var dispatcher = Dispatch<object>.CreateDefaultMultiThreaded("MyTask");
dispatcher.AddConsumer(MyWorkMethod);
dispatcher.Start();
dispatcher.AddWork(workToDo);
dispatcher.WaitForEmptyQueueAndStop(); // only call this if you're not filling the queue from elsewhere
}
or
Dispatch<int>.ProcessBatch("BatchRequests", Enumerable.Range(0, times).ToArray(), i => {
. . .
},
threadCount,
ex => {
Console.WriteLine("Error: " + ex.Message);
}
);
Handling long running incoming jobs:
dispatcher = Dispatch<object>.CreateDefaultMultiThreaded("MyService");
dispatcher.AddConsumer(MyWorkMethod);
dispatcher.Start();
.
.
.
dispatcher.AddWork(...);
Using a polling method to handle incoming jobs in a long-running process:
var dispatcher = Dispatch<object>.PollAndProces("MyService", myPollingSource);
dispatcher.AddConsumer(MyWorkMethod);
dispatcher.Start();
with a method defined like
void MyWorkMethod(object obj)
{
. . .
}
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. |
This package has no dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DispatchSharp:
Package | Downloads |
---|---|
SevenDigital.Messaging
A distributed contracts-based sender/handler messaging system built on RabbitMQ and BearBones-Messaging |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.5.0 | 896 | 6/12/2023 |
1.4.0 | 182 | 5/26/2023 |
1.3.0 | 204 | 5/10/2023 |
1.2.2 | 212 | 4/25/2023 |
1.2.1 | 227 | 4/13/2023 |
1.2.0 | 224 | 4/13/2023 |
1.1.3 | 339 | 2/1/2023 |
1.1.2 | 390 | 11/2/2022 |
1.1.0 | 385 | 11/1/2022 |
1.0.0 | 3,328 | 8/10/2018 |
0.1.11 | 3,268 | 12/6/2013 |
0.1.10 | 1,342 | 8/19/2013 |
0.1.9 | 1,592 | 7/18/2013 |
0.1.8 | 1,471 | 7/9/2013 |
0.1.7 | 1,427 | 6/19/2013 |
0.1.6 | 1,414 | 6/17/2013 |
0.1.5 | 1,383 | 6/10/2013 |
0.1.4 | 1,337 | 6/6/2013 |
0.1.3 | 1,352 | 6/6/2013 |
0.1.2 | 1,345 | 6/4/2013 |
0.1.1 | 1,336 | 6/4/2013 |
0.1.0 | 1,403 | 5/31/2013 |
0.0.1 | 1,391 | 5/21/2013 |
Add queue length on dispatcher