diff --git a/docs/apis-tools/go-client/go-get-started.md b/docs/apis-tools/go-client/go-get-started.md index 4943d5f500c..fb5022467e3 100644 --- a/docs/apis-tools/go-client/go-get-started.md +++ b/docs/apis-tools/go-client/go-get-started.md @@ -7,6 +7,12 @@ sidebar_label: "Getting started with the Go client" import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; +:::caution + +The Zeebe Go client will be officially deprecated with the 8.6 release. For more information, see [announcements](../../../reference/announcements/#deprecation-zeebe-go-client--zbctl). + +::: + In this tutorial, you will learn how to use the Go client in a Go application to interact with Camunda 8. You can find a complete example on [GitHub](https://github.com/camunda/camunda-platform-get-started/tree/main/go). diff --git a/docs/apis-tools/go-client/job-worker.md b/docs/apis-tools/go-client/job-worker.md index 58ff305ee8f..d342ffab8d5 100644 --- a/docs/apis-tools/go-client/job-worker.md +++ b/docs/apis-tools/go-client/job-worker.md @@ -5,6 +5,12 @@ description: "Let's take a deeper look at job workers to handle jobs." keywords: ["backpressure", "back-pressure", "back pressure"] --- +:::caution + +The Zeebe Go client will be officially deprecated with the 8.6 release. For more information, see [announcements](../../../reference/announcements/#deprecation-zeebe-go-client--zbctl). + +::: + The Go client provides a job worker that handles both polling and streaming for available jobs. This allows you to focus on writing code to handle the activated jobs. On `Open`, the job worker waits `PollInterval` milliseconds and then polls for `MaxJobsActive` jobs. It then continues with the following schedule: