https://kotlinlang.org logo
p

pawegio

12/09/2015, 2:10 PM
I had same case on Android with posting delayed runnables to handler in loop, the only UGLY resolution I’ve found:
Copy code
var runnable: Runnable
runnable = Runnable {
    doThings(runnable)
}
btw. it fits #C0922A726