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

jsMain.channels.ArrayChannelState.kt Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version
/*
 * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.coroutines.channels

import kotlin.math.*

internal actual class ArrayChannelState actual constructor(initialBufferSize: Int) : ArrayBufferState(initialBufferSize) {
    actual var head = 0
    actual var size = 0

    actual fun ensureCapacity(currentSize: Int, capacity: Int) {
        if (currentSize < buffer.size) return
        val newSize = min(buffer.size * 2, capacity)
        val newBuffer = arrayOfNulls(newSize)
        for (i in 0 until currentSize) {
            newBuffer[i] = buffer[(head + i) % buffer.size]
        }
        buffer = newBuffer
        head = 0
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy