[嗨,我想获得当前的协程,然后从子类中调用它的某些方法。类似于线程中的Thread.currentThread()之类的东西。
所以我正在考虑这样:
fun main() {
GlobalScope.launch {
classA.method1()
}
}
classA.method1() {
try{
val coroutin = tryTogetContext()
coroutin.delay(1000L) //Then i can call some methods like this
} catch( e:Exception){
}
所以我可以从内部类中调用诸如delay之类的方法。我该怎么做?