Question
Coforge DPA Aus Pvt Ltd
Coforge DPA Aus Pvt Ltd
AU
Coforge DPA Aus Pvt Ltd
Posted: Dec 20, 2016
Last activity: Jan 3, 2017
Last activity: 3 Jan 2017 0:51 EST
Closed
Solved
Can two activities run in parallel
Can you please let me know if two activities can run in parallel if so how to trace them at a time?
***Updated by moderator: Lochan to update Categories***
Your requestor thread can process only one action at a time. If you have to run two activities , one of them has to be operated in asynchronus modeon a separate thread ( aka Parallel thread ) . So in that case, to trace the second activity you have to do a remote tracing.
Call-Async-Activity Is one such method that can be used here. It will execute a given activity asynchronously. It is possible for the caller activity to wait till the spin off activity is completed. This can be done by providing a pool id and then waiting on that pool id using Connect-Wait method in subsequent steps.