Hi all,
One of our processes is completely automated and in that we need to make 7 or 8 consecutive external API calls for completion. However, any of those APIs may raise an exception or stuck in timeout. If either exception or timeout occurs, we want to end with a signal end event.
Of course, it is possible to model and run it like sequencing 8 consecutive event-based gateways, each including all three options (success, exception, timeout) but this seems to be a terrible model. How can we model an API call and all those three possible outcomes in a generic sub-process way, yet execute each instance of it with the correct API and their correct inputs/outputs.
Thanks a lot in advance!