你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
OrchestrationRuntimeStatus 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示业务流程实例可能的运行时执行状态值。
public enum OrchestrationRuntimeStatus
type OrchestrationRuntimeStatus =
Public Enum OrchestrationRuntimeStatus
- 继承
-
OrchestrationRuntimeStatus
字段
Canceled | 4 | 业务流程已取消。 |
Completed | 1 | 业务流程运行到完成。 |
ContinuedAsNew | 2 | 使用 ContinueAsNew 完成的业务流程,就像在重启过程中一样。 |
Failed | 3 | 业务流程失败并出现错误。 |
Pending | 6 | 业务流程已计划,但尚未启动。 |
Running | 0 | 业务流程正在运行, (它可能正在主动运行或等待输入) 。 |
Suspended | 7 | 业务流程已暂停 |
Terminated | 5 | 业务流程已通过 API 调用终止。 |
Unknown | -1 | 无法确定业务流程的状态。 |