hestia-rsps / hestia

An open-source Kotlin game server.
BSD 3-Clause "New" or "Revised" License
16 stars 4 forks source link

Suspend-able TaskScope end() #66

Closed GregHib closed 4 years ago

GregHib commented 4 years ago

A suspendable method needed so actions afterwards aren't called accidentally.

queue {
    println("To the thing")
    end()
    println("This is called but shouldn't be")
}