wenjin272 commented on code in PR #32: URL: https://github.com/apache/flink-agents/pull/32#discussion_r2160967697
########## python/flink_agents/api/workflow.py: ########## @@ -0,0 +1,57 @@ +import importlib +from collections import deque +from typing import Any, Dict, final +from uuid import UUID + +from flink_agents.api.workflow_runner import WorkflowRunner + + +class Workflow: + """Base class for defining workflow logic. + + Attributes: + ---------- + __runner : WorkflowRunner + Internal workflow runner instance used to execute the workflow. + """ + + __runner: WorkflowRunner = None Review Comment: make sense -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
