Hi,
I am working on Zeebe and would like to know any golang client api is present to move token between worker.
Context:
Handling Exception
Hi,
I am working on Zeebe and would like to know any golang client api is present to move token between worker.
Context:
Handling Exception
Hi @camundabpmlearner - we do have a Go client:
Do you mean a Go client for building job workers? That is supported with the Go client!
Hi @nathan.loding
Thank you for the response.
My query is specific to token movement using Golang Api. I couldn’t find any such.
What do you mean by “token movement”?
token movement means moving the execution context to specific task. We have similar feature in administrative screens like operate/admin. This can also be done using APIs. And I’m looking for same.
The Go client is just a wrapper around gRPC calls to the Zeebe API; if you don’t see something included in the client, it should be pretty easy to make the same call without the client. PRs are welcome!
I think the command you’re looking for is the ModifyProcessInstance
command, which is included in the Go client.