I have a java application that interacts with multiple cloud functions which need to be triggered when an event occurs. The cloud functions need to be triggered asynchronously. I read that Pub/Sub is an option to asynchronously trigger Cloud Functions but I cannot use it due to some architectural constraints.
I tried the http trigger but I need to wait until it is completed before I trigger my other Cloud functions.
Is there any alternative method for Pub/Sub trigger?