Skip to content

Commit 739c57d

Browse files
author
Shailesh Jagannath Padave
committed
Added model classes
1 parent 41e0599 commit 739c57d

5 files changed

Lines changed: 2247 additions & 52 deletions

File tree

src/conductor/client/constants.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from enum import Enum
2+
3+
class WorkflowConsistency(str, Enum):
4+
"""Enum for workflow execution consistency modes"""
5+
SYNCHRONOUS = "SYNCHRONOUS"
6+
DURABLE = "DURABLE"
7+
REGION_DURABLE = "REGION_DURABLE"
8+
9+
class WorkflowSignalReturnStrategy(str, Enum):
10+
"""Enum for workflow signal return strategies"""
11+
TARGET_WORKFLOW = "TARGET_WORKFLOW"
12+
BLOCKING_WORKFLOW = "BLOCKING_WORKFLOW"
13+
BLOCKING_TASK = "BLOCKING_TASK"
14+
BLOCKING_TASK_INPUT = "BLOCKING_TASK_INPUT"

0 commit comments

Comments
 (0)