Open-source multiplayer game server compatible with the RuneScape client https://www.openrs2.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
openrs2/net/src/main/kotlin/org/openrs2/net/FutureExtensions.kt

26 lines
612 B

package org.openrs2.net
import io.netty.util.concurrent.Future
import kotlin.coroutines.resume
import kotlin.coroutines.resumeWithException
import kotlin.coroutines.suspendCoroutine
public suspend fun <V> Future<V>.awaitSuspend(): V {
if (isDone) {
if (isSuccess) {
return now
} else {
throw cause()
}
}
return suspendCoroutine { continuation ->
addListener {
if (isSuccess) {
continuation.resume(now)
} else {
continuation.resumeWithException(cause())
}
}
}
}