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

commonMain.com.badoo.reaktive.utils.atomic.AtomicLong.kt Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.badoo.reaktive.utils.atomic

import com.badoo.reaktive.utils.InternalReaktiveApi

@InternalReaktiveApi
expect class AtomicLong(initialValue: Long = 0L) {

    var value: Long

    fun addAndGet(delta: Long): Long

    fun compareAndSet(expectedValue: Long, newValue: Long): Boolean
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy