Irven Aelbrecht
02/24/2022, 11:17 PMop A
) which does an api call that creates an item. (response is urn)
Then I have a sensor which receives events on the progress of calculating the item (which happens outside our control)
This sensor can receive events of multiple items.
Then I want to continue the job which used op A
because there is specific data in the job later on.
I want to create something like a second op which can wait/ do something on an event by the sensor when the urn matches.
I don't want to use polling as this would cause extra delays or resources when you make the polling delay low.prha
02/25/2022, 4:33 PMdon't want to use polling
. In both scenarios, you would use polling to check status. If there’s a way to provide a callback to the API (push model), you could use the GraphQL API to kick off a job.Irven Aelbrecht
02/25/2022, 4:46 PM