Question
7
Replies
6565
Views
Posted: March 6, 2017
Last activity: October 16, 2018
Connect Wait method functionality
Can anyone explains me, how connect wait method is useful, while calling connect-soap method in execution mode as Run In Parallel ?
***Edited by Moderator Marissa to update platform capability tags****
**Moderation Team has archived post**
This post has been archived for educational purposes. Contents and links will no longer be updated. If you have the same/similar question, please write a new post.
Connect-wait method is used along with one of the connect- methods or also when we want to join the result of parallel requestor results . When we use "run in parallel" option child requestors are created for the parallel processing of connectors . If we do not use connect-wait method the current requestor will not wait for the child requestor to be completed. This might be required when we want to merge the results of child requestors with the current requestor. When we specify the waitforseconds parameter as a positive value , it would wait for the number of seconds specified . If we specify -1 value it would wait indefinitely till all the child requestors to complete .