英文:
Zeebe cancel deployed instances
问题
最近我尝试在Scala上使用Zeebe和Zeebe IO,我有一些未完成的实例,不知道如何删除它们,有人可以提出关于这个的建议吗?
英文:
Recently I have tried using zeebe, zeebe io on scala, and I have some unfinished instances, and donno how to remove them, can anyone suggest me any desicion about that?
答案1
得分: 2
工作流实例可以通过以下方式取消:
命令行:
zbctl cancel instance INSTANCE_KEY
通过客户端编程(Java API示例):
zeebeClient
.newCancelInstanceCommand(instanceKey)
.send();
或者直接在操作界面上,使用每行右侧的取消按钮。
英文:
Workflow instances can be canceled via:
Comand line:
zbctl cancel instance INSTANCE_KEY
Programmatically via Client (java api example):
zeebeClient
.newCancelInstanceCommand(instanceKey)
.send();
or directly in operate with the cancel button at the right of each line.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论