We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa612f9 commit fcd9316Copy full SHA for fcd9316
kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Scheduled.kt
@@ -21,7 +21,7 @@ import java.util.concurrent.ScheduledThreadPoolExecutor
21
import java.util.concurrent.TimeUnit
22
import kotlin.coroutines.experimental.startCoroutine
23
24
-val KEEP_ALIVE = java.lang.Long.getLong("kotlinx.coroutines.ScheduledExecutor.keepAlive", 1000L)
+private val KEEP_ALIVE = java.lang.Long.getLong("kotlinx.coroutines.ScheduledExecutor.keepAlive", 1000L)
25
26
internal val scheduledExecutor by lazy<ScheduledExecutorService> {
27
ScheduledThreadPoolExecutor(1) { r ->
0 commit comments