Hello, since Atomic* (like `AtomicLong`) are not a...
# multiplatform
n
Hello, since Atomic* (like
AtomicLong
) are not available on common target, what can be used instead ? Currently I'm using
@Volatile
on a simple
var atomicLong = 0L
but it feels wrong. Am I missing something ?
j
n
Perfect, thanks