<@U3E25GSEP|robin> uploaded a file: <Repeater> and...
# coroutines
r
@User uploaded a file: Repeater and commented: So I've written a little Repeater class, that allows me to repeat some action regularly using coroutines. Can you think of improvements for this design, or is there something I should be aware of with this solution? Usage is like this: ``` val repeater = Repeater(1000L) { calledEverySecond() } repeater.start()