hackerham
01/23/2017, 10:55 PMimport kotlin.coroutines.*
class CoroutineName(val name: String) : AbstractCoroutineContextElement(CoroutineName) {
companion object Key : CoroutineContext.Key<CoroutineName>
override fun toString(): String = "CoroutineName($name)"
}
fun setTimer() {
val t = СoroutineName("stuff")
}