Hello! In new 1.9.0-RC signature of method `LockFr...
# coroutines
a
Hello! In new 1.9.0-RC signature of method
LockFreeLinkedListNode.addLast
has been changed. What is
permissionsBitmask
? How to use it? https://github.com/Kotlin/kotlinx.coroutines/compare/1.8.1...1.9.0-RC#diff-10093b152153d43f691460f9806acb7a7b91ec7d8796f05d90f3f1df0cf8ac5d
a
addLast
is an internal coroutines API, you're not supposed to use it at all
I think they're actually going to remove
addLast
eventually: https://github.com/Kotlin/kotlinx.coroutines/pull/4095
Well, ok, it's not removed, but it's moved to another class.
a
a
ktor already has its own copy of
LockFreeLinkedList.kt
in
ktor-utils/common/src/io/ktor/util/internal/
, maybe it can use that in
ktor-shared/ktor-events/common/src/io/ktor/events/Events.kt
, too?
Or in general, just copy the old code from
kotlinx-coroutines
.
a
a good point actually, may be it is just a wrong import