than_
12/07/2021, 2:30 PMSchedule.identity<Boolean>().delay { Duration.minutes(15) }.whileOutput(::identity)
Unfortunately this executes instantly. Is there a way to create this scheduler (other that putting kotlinx.coroutines.delay in the repeat function)?simon.vergauwen
12/07/2021, 2:39 PMSchedule.spaced<Boolean>(Duration.minutes(15)).whileOutput(::identity)
simon.vergauwen
12/07/2021, 2:39 PMdelay
.than_
12/07/2021, 4:14 PM