https://kotlinlang.org logo
e

elizarov

01/09/2018, 7:37 AM
@arocnies
runBlocking { delay(xxx) }
has the same effect as
Thread.sleep(xxx)
. If you really needed it inside
buildSequence
, then just use the later.