在 Camunda 中将服务任务配置为外部任务
Configure a service task as an external task in Camunda
如何在 Camunda BPM 中将服务任务配置为外部任务?
看看 service task documentation。
这是将服务任务配置为外部任务的文档摘录。
To declare a Service Task to be handled externally, the attribute camunda:type
can be set to external and the attribute camunda:topic
specifies the external task’s topic.
For example, the following XML snippet defines an external Service Task with topic ShipmentProcessing:
<serviceTask id="anExternalServiceTask"
camunda:type="external"
camunda:topic="ShipmentProcessing" />
有关详细信息,另请阅读 external task user guide
如何在 Camunda BPM 中将服务任务配置为外部任务?
看看 service task documentation。
这是将服务任务配置为外部任务的文档摘录。
To declare a Service Task to be handled externally, the attribute
camunda:type
can be set to external and the attributecamunda:topic
specifies the external task’s topic. For example, the following XML snippet defines an external Service Task with topic ShipmentProcessing:<serviceTask id="anExternalServiceTask" camunda:type="external" camunda:topic="ShipmentProcessing" />
有关详细信息,另请阅读 external task user guide