Question
Load data page execution
Calling a datapage using Load-Datapage method from an activity which has additional steps after Load-Datapage step. While tracing this activity I observed the following.
Tracer shows the load-datapage steps followed by other steps in activity. Looks like this works synchronous and sequential .
1.Is it asynchronous execution?
2. Load-datapage runs in child requestor ?
3. I m not using any connect-wait , is that the reason for synchronous execution ?
4. Can I use parameter pages here ?
Thanks.
***Updated by moderator: Lochan to update platform capability***
The Load-DataPage method loads the datapage asynchronously in the background. It can be verified by checking the "ADP Load" in the tracer settings. Until the datapage is referenced in the work flow, the data page will not be loaded in the clipboard.
Using Connect-Wait method with the Load-DataPage method. Load-DataPage uses the PoolID property to group requestors loading data as part of the same activity. Connect-Wait lets processing wait for the stated timeout interval, or until all requestors with the same PoolID have finished loading data.