VOOZH about

URL: https://www.nuget.org/packages/zb-client/

⇱ NuGet Gallery | zb-client 2.10.0




👁 Image
zb-client 2.10.0

dotnet add package zb-client --version 2.10.0
 
 
NuGet\Install-Package zb-client -Version 2.10.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="zb-client" Version="2.10.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="zb-client" Version="2.10.0" />
 
Directory.Packages.props
<PackageReference Include="zb-client" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add zb-client --version 2.10.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: zb-client, 2.10.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package zb-client@2.10.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=zb-client&version=2.10.0
 
Install as a Cake Addin
#tool nuget:?package=zb-client&version=2.10.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

👁 .NET Core CI
👁 alternate text is missing from this package README image
👁 alternate text is missing from this package README image
👁 alternate text is missing from this package README image
👁 alternate text is missing from this package README image
👁 alternate text is missing from this package README image
👁 Compatible with: Camunda Platform 8

Zeebe C# client

The Zeebe C# client is a C# wrapper implementation around the GRPC (https://github.com/grpc/grpc) generated Zeebe client. It makes it possible to communicate with Zeebe Broker via the GRPC protocol, see the Zeebe documentation for more information about the Zeebe project.

Requirements

*If you use earlier Zeebe versions some commands might be not supported by the Brokers/Gateway and are rejected

How to use

The Zeebe C# client is available via nuget (https://www.nuget.org/packages/zb-client/).

Please have a look at the API documentation.

Camunda Cloud

The Zeebe C# Client is Camunda Cloud ready. To get an example how to use the Zeebe C# Client with the Cloud take a look at .

Quick start

As quick start you can use the following code:

var zeebeClient = CamundaCloudClientBuilder
 .Builder()
 .UseClientId("CLIENT_ID")
 .UseClientSecret("CLIENT_SECRET")
 .UseContactPoint("ZEEBE_ADDRESS")
 .Build();

var topology = await zeebeClient.TopologyRequest().Send();

Alternatively you could also read the credentials from the environment:

var zeebeClient = CamundaCloudClientBuilder
 .Builder()
 .FromEnv()
 .Build();

var topology = await zeebeClient.TopologyRequest().Send();

How to build

Run msbuild Zeebe.sln or dotnet build Zeebe.sln

Product Versions Compatible and additional computed target framework versions.
.NET net6.0 net6.0 is compatible.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 is compatible.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on zb-client:

Package Downloads
zb-client-accelerator

This project is an extension of the zb-client (https://www.nuget.org/packages/zb-client/). Zeebe Job Workers are automatically recognized and boostrapped via a .Net HostedService. For more information about the zeebe project please visit https://camunda.com/platform/zeebe/ The basic idea for this came from https://github.com/camunda-community-hub/zeebe-client-csharp-bootstrap. We loved the idea, but had in some parts our own preferences for defaults, behaviour and separation of concerns. So this is our version of a good Bootstrap Extension for the C# Zeebe Client. Credits still belong to https://github.com/arjangeertsema.

zb-client-bootstrap

This project is an extension of the zb-client (https://www.nuget.org/packages/zb-client/). Zeebe Job handlers are automaticly recognized and boostrapped via a .Net HostedService. For more information about the zeebe project please visit https://camunda.com/platform/zeebe/

ZeeBridge

Simplify your Camunda integration with ZeeBridge, a .NET library designed to bridge the gap between worker jobs in your source code and Camunda. With its easy-to-use API and Zeebe-powered communication, ZeeBridge is the perfect solution for your Camunda connection needs.

F88.Camunda.Orchestrator.Library

Enhanced Camunda orchestration library with optimized base classes for Zeebe workers and processors. Features configuration-driven approach, specialized HTTP/Kafka processors, automatic retry mechanisms, and comprehensive error handling for F88's workflow platform.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on zb-client:

Repository Stars
camunda-community-hub/zeebe-client-csharp
Contains an Zeebe C# client implementation.
Version Downloads Last Updated
2.10.0 92,747 11/12/2025
2.9.0 249,927 2/19/2025
2.8.0 25,820 2/8/2025
2.7.0 144,184 9/18/2024
2.6.0 66,336 5/27/2024
2.5.0 61,313 2/2/2024
2.4.0 33,702 12/15/2023
2.3.0 37,192 10/15/2023
2.2.0 196,949 9/8/2023
2.1.0 9,361 8/12/2023
2.0.0 4,544 7/19/2023
1.3.0 319,248 1/19/2023
1.2.1 272,178 2/7/2022
1.2.0 8,640 2/1/2022
1.1.0 64,755 11/10/2021
1.0.2 53,494 8/20/2021
1.0.1 617 8/20/2021
1.0.0 19,469 5/10/2021
0.19.0 34,254 2/28/2021
0.18.0 10,927 9/23/2020
Loading failed

See release notes https://github.com/camunda-community-hub/zeebe-client-csharp/releases

     This release is based on the Zeebe 8.8.0 release (https://github.com/zeebe-io/zeebe).