InterviewSolution
| 1. |
What Is The Difference Between Stop And Abort Options In Workflow Monitor? |
|
Answer» Stop waits for all running OBJECTS to complete and then TERMINATE the process HOWEVER abort stops the entire object running immediately. Eg: A workflow is in running STATE and it’s having 5 sessions in it and only 2 sessions are running. STOP: It will wait for the running sessions to complete their process and then terminate the workflow. Remaining 3 sessions will not run. ABORT: It will kill the running SESSION immediately and thus the workflow. Stop waits for all running objects to complete and then terminate the process however abort stops the entire object running immediately. Eg: A workflow is in running state and it’s having 5 sessions in it and only 2 sessions are running. STOP: It will wait for the running sessions to complete their process and then terminate the workflow. Remaining 3 sessions will not run. ABORT: It will kill the running session immediately and thus the workflow. |
|