Remove redundant call to coroutineScope in SuspendBindingBenchmark

This commit is contained in:
Michael Bull 2024-03-10 23:21:24 +00:00
parent ab06a2a3fc
commit 09818a7d50
1 changed files with 4 additions and 7 deletions

View File

@ -9,7 +9,6 @@ import kotlinx.benchmark.OutputTimeUnit
import kotlinx.benchmark.Scope
import kotlinx.benchmark.State
import kotlinx.coroutines.async
import kotlinx.coroutines.coroutineScope
import kotlinx.coroutines.delay
import kotlinx.coroutines.runBlocking
import com.github.michaelbull.result.coroutines.binding.binding as coroutineBinding
@ -54,13 +53,11 @@ class SuspendBindingBenchmark {
x + y
}
private suspend fun withAsyncSuspend(): Result<Int, Error> = coroutineScope {
coroutineBinding {
private suspend fun withAsyncSuspend(): Result<Int, Error> = coroutineBinding {
val x = async { provideX().bind() }
val y = async { provideY().bind() }
x.await() + y.await()
}
}
private fun provideXBlocking(): Result<Int, Error> {
Thread.sleep(time)