-
Notifications
You must be signed in to change notification settings - Fork 5k
[Chore][Master] Rename methods in StateAction for better readability. #17379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Thanks for opening this pull request! Please check out our contributing guidelines. (https://github.com/apache/dolphinscheduler/blob/dev/docs/docs/en/contribute/join/pull-request.md) |
ruanwenjun
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
| void startedEventAction(final IWorkflowExecutionRunnable workflowExecutionRunnable, | ||
| final ITaskExecutionRunnable taskExecutionRunnable, | ||
| final TaskRunningLifecycleEvent taskRunningEvent); | ||
| void onStartedEvent(final IWorkflowExecutionRunnable workflowExecutionRunnable, |
Check notice
Code scanning / CodeQL
Useless parameter Note
| void runtimeContextChangedEventAction(final IWorkflowExecutionRunnable workflowExecutionRunnable, | ||
| final ITaskExecutionRunnable taskExecutionRunnable, | ||
| final TaskRuntimeContextChangedEvent taskRuntimeContextChangedEvent); | ||
| void onRuntimeContextChangedEvent(final IWorkflowExecutionRunnable workflowExecutionRunnable, |
Check notice
Code scanning / CodeQL
Useless parameter Note
| void retryEventAction(final IWorkflowExecutionRunnable workflowExecutionRunnable, | ||
| final ITaskExecutionRunnable taskExecutionRunnable, | ||
| final TaskRetryLifecycleEvent taskRetryEvent); | ||
| void onRetryEvent(final IWorkflowExecutionRunnable workflowExecutionRunnable, |
Check notice
Code scanning / CodeQL
Useless parameter Note
| void dispatchEventAction(final IWorkflowExecutionRunnable workflowExecutionRunnable, | ||
| final ITaskExecutionRunnable taskExecutionRunnable, | ||
| final TaskDispatchLifecycleEvent taskDispatchEvent); | ||
| void onDispatchEvent(final IWorkflowExecutionRunnable workflowExecutionRunnable, |
Check notice
Code scanning / CodeQL
Useless parameter Note
| void failoverEventAction(final IWorkflowExecutionRunnable workflowExecutionRunnable, | ||
| final ITaskExecutionRunnable taskExecutionRunnable, | ||
| final TaskFailoverLifecycleEvent taskFailoverEvent); | ||
| void onFailoverEvent(final IWorkflowExecutionRunnable workflowExecutionRunnable, |
Check notice
Code scanning / CodeQL
Useless parameter Note
|
SbloodyS
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
|
Awesome work, congrats on your first merged pull request! |


Purpose of the pull request
Rename methods in TaskStateActions and WorkflowStateActions for better readability.
Brief change log
Rename methods
xxxEventActiontoonXxxEventin TaskStateActions and WorkflowStateActions for better readability.close #17377
Verify this pull request
This pull request is code cleanup without any test coverage.