Hi. What's the recommended approach to implement s...
# ask-community
p
Hi. What's the recommended approach to implement something like an Airflow sensor? For example, one that will wait until a certain time or one that will poll an API or run a database query until it returns a certain value? Would a simple long running task with a loop and a delay work?
j
Hi @Pedro Machado! Yes, using that same pattern will work fine in Prefect.
p
Thanks!