zb-client-bootstrap
0.0.3
See the version list below for details.
dotnet add package zb-client-bootstrap --version 0.0.3
NuGet\Install-Package zb-client-bootstrap -Version 0.0.3
<PackageReference Include="zb-client-bootstrap" Version="0.0.3" />
paket add zb-client-bootstrap --version 0.0.3
#r "nuget: zb-client-bootstrap, 0.0.3"
// Install zb-client-bootstrap as a Cake Addin #addin nuget:?package=zb-client-bootstrap&version=0.0.3 // Install zb-client-bootstrap as a Cake Tool #tool nuget:?package=zb-client-bootstrap&version=0.0.3
Boostrap extension for the C# Zeebe client
This project is an extension of the C# Zeebe client project. Zeebe Job handlers are automaticly recognized and boostrapped via a .Net HostedService.
Requirements
- .Net 5.0
- latest C# Zeebe client release
- latest Zeebe release
How to use
The Zeebe C# client boostrap extensions is available via nuget (https://www.nuget.org/packages/zb-client-bootstrap/).
See examples and blog post for more information.
Quick start
All classes which implement IJobHandler<TJob>
, IJobHandler<TJob, TResponse>
, IAsyncJobHandler<TJob>
or IAsyncJobHandler<TJob, TResponse>
are automaticly found, added to the service collection and autowired to Zeebe when you register this boostrap project with the IServiceCollection.BoostrapZeebe()
extension method.
The BoostrapZeebe
method has two parameters:
ZeebeBootstrapOptions
via configuration, action delegate or both.- An array with assembly filters, only assemblies which start with one of the filters will be scanned for job handlers.
ConfigureServices((hostContext, services) => {
services.BootstrapZeebe(
hostContext.Configuration.GetSection("ZeebeBootstrap"),
"SimpleAsyncExample"
);
})
Job
The job is an implementation of AbstractJob
. By default the simple name of the job is mapped to BPMN task job type. Job types must be unique. The default job configuration can be overwritten with AbstractJobAttribute
implementations, see attributes for more information.
public class SimpleJob : AbstractJob
{
public SimpleJob(IJob job)
: base(job)
{
//Variable mapping logic can be added here.
}
}
Job handler
The job handler is an implementation of IJobHandler<TJob>
, IJobHandler<TJob, TResponse>
, IAsyncJobHandler<TJob>
or IAsyncJobHandler<TJob, TResponse>
. Job handlers are automaticly added to the DI container, therefore you can use dependency injection inside the job handlers. The default job handler configuration can be overwritten with AbstractJobHandlerAttribute
implementations, see attributes for more information.
public class SimpleJobHandler : IAsyncJobHandler<SimpleJob>
{
public async Task HandleJob(SimpleJob job, CancellationToken cancellationToken)
{
//TODO: make the handling idempotent.
await Usecase.ExecuteAsync();
}
}
A handled job has three outcomes:
- The job has been handled without exceptions: this will automaticly result in a
JobCompletedCommand
beeing send to the broker. TheTResponse
is automaticly serialized and added to theJobCompletedCommand
. - An exception has been thrown while handling the job and the exception implements
AbstractJobException
: this wil automaticly result in aThrowErrorCommand
beeing send to the broker; - Any other exception will automaticly result in a
FailCommand
beeing send to the broker;
Conventions
This project uses the following conventions:
- By default the simple name of the
AbstractJob
implementation is used to match theType
which is specified in the BPMN model. This can be overriden by adding theJobTypeAttribute
to theAbstractJob
implementation, see attributes for more information. - By default the assembly name which contains the job handler is used as the
Worker name
. This can be overriden by adding theWorkerNameAttribute
to theAbstractJob
implementation, see attributes for more information. - By default the job handlers are added to de DI container with a
Transient
service lifetime. This can be overriden by adding theServiceLifetimeAttribute
to the job handler, see attributes for more information. - By default the
ZeebeVariablesSerializer
is registered as the implementation forIZeebeVariablesSerializer
which usesSystem.Text.Json.JsonSerializer
. You can override this registration by registering your service after theBootstrapZeebe
method or you can registerSystem.Text.Json.JsonSerializerOptions
to configure theSystem.Text.Json.JsonSerializer
.
How to build
Run dotnet build Zeebe.Client.Bootstrap.sln
How to test
Run dotnet test Zeebe.Client.Bootstrap.sln
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. |
-
net5.0
- Microsoft.Extensions.Configuration.Abstractions (>= 5.0.0)
- Microsoft.Extensions.Hosting (>= 5.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 5.0.0)
- zb-client (>= 1.0.2)
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 |
---|---|---|
1.0.0 | 11,137 | 9/21/2022 |
0.1.5 | 3,879 | 7/29/2022 |
0.1.4 | 421 | 7/29/2022 |
0.1.3 | 16,599 | 2/12/2022 |
0.1.2 | 530 | 2/2/2022 |
0.1.1 | 1,343 | 12/1/2021 |
0.1.0 | 361 | 11/17/2021 |
0.0.8 | 7,596 | 10/24/2021 |
0.0.7 | 316 | 10/21/2021 |
0.0.6 | 362 | 10/12/2021 |
0.0.5 | 323 | 10/12/2021 |
0.0.4 | 316 | 9/29/2021 |
0.0.3 | 334 | 9/6/2021 |
0.0.2 | 349 | 9/3/2021 |
0.0.1 | 324 | 9/2/2021 |
0.0.1-preview010 | 210 | 8/25/2021 |
0.0.1-preview007 | 209 | 8/25/2021 |
0.0.1-preview006 | 212 | 8/25/2021 |
0.0.1-preview005 | 217 | 8/23/2021 |