Hi,
Currently, when creating an item in a to-do-list, some information is retrieved using 2 webservices. Each webservice may return: I have information about that item or I don't have information about that item. Each webservice takes some seconds, and because it's directly invoked after a microflow-button, the user has to wait for both results to be received. Having future development in view, we might expand the number of webservices (to 3 or 4) and the end-user is already impatient waiting for 2 webservices.
Therefore, the question arises whether it would be possible to call those webservices (in submicroflows) in parallel (ASync)? And then continue when all submicroflows are finished.
Something like:
In my view, ProcessQueue is not a solution, as I want to process the result Synchronized to the end-user.
I am not afraid to use Java Actions, as long as the stability is not compromised.
Thanks in advance!