hi all, I am new to ktor. I am wondering wether it...
# ktor
a
hi all, I am new to ktor. I am wondering wether it is possible to schedule requests from ktor server to other services (meaning that this requests will happen periodically)?
c
There is no need in any special support from ktor side. Just launch a coroutine with a loop consisting of a delay and a ktor client call
🙂 1
👍🏼 1
d
Maybe this will help to for som advanced timing stuff https://jamie.mccrindle.org/posts/exploring-kotlin-standard-library-part-3/
👍 1
a
Thanks @cy and @Dennis Schröder