I have a trivial question, I think. This code is r...
# coroutines
d
I have a trivial question, I think. This code is run inside a function of a class. Typically inside any class function you can recall the class object with
this
, but inside the
run blocking
lambda,
this
becomes the coroutine scope. How can I reference the class object instead?
s
this@NameOfClass
d
great, thanks!