-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document and tweak the contract of Executor.asCoroutineDispatcher and…
… ExecutorService.asCoroutineDispatcher * Document it properly * Make it more robust to signature changes and/or delegation (e.g. see the implementation of java.util.concurrent.Executors.newScheduledThreadPool) * Give a public way to reduce the memory pressure via ScheduledFuture.cancel Fixes #2601
- Loading branch information
Showing
2 changed files
with
94 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
kotlinx-coroutines-core/jvm/test/DelayAsCoroutineDispatcherTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
package kotlinx.coroutines | ||
|
||
import org.junit.Test | ||
import java.lang.Runnable | ||
import java.util.concurrent.* | ||
import kotlin.test.* | ||
|
||
class DelayAsCoroutineDispatcherTest : TestBase() { | ||
|
||
private var callsToSchedule = 0 | ||
|
||
private inner class STPE : ScheduledThreadPoolExecutor(1) { | ||
override fun schedule(command: Runnable, delay: Long, unit: TimeUnit): ScheduledFuture<*> { | ||
if (delay != 0L) ++callsToSchedule | ||
return super.schedule(command, delay, unit) | ||
} | ||
} | ||
|
||
private inner class SES : ScheduledExecutorService by STPE() | ||
|
||
@Test | ||
fun testScheduledThreadPool() = runTest { | ||
val executor = STPE() | ||
withContext(executor.asCoroutineDispatcher()) { | ||
delay(100) | ||
} | ||
executor.shutdown() | ||
assertEquals(1, callsToSchedule) | ||
} | ||
|
||
@Test | ||
fun testScheduledExecutorService() = runTest { | ||
val executor = SES() | ||
withContext(executor.asCoroutineDispatcher()) { | ||
delay(100) | ||
} | ||
executor.shutdown() | ||
assertEquals(1, callsToSchedule) | ||
} | ||
} |