All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.Waiter.kt Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version
package kotlinx.coroutines

import kotlinx.coroutines.internal.Segment
import kotlinx.coroutines.selects.*

/**
 * All waiters (such as [CancellableContinuationImpl] and [SelectInstance]) in synchronization and
 * communication primitives, should implement this interface to make the code faster and easier to read.
 */
internal interface Waiter {
    /**
     * When this waiter is cancelled, [Segment.onCancellation] with
     * the specified [segment] and [index] should be called.
     * This function installs the corresponding cancellation handler.
     */
    fun invokeOnCancellation(segment: Segment<*>, index: Int)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy