Skip to content

Commit 883e57e

Browse files
author
Sergey Mashkov
committed
Make internal MPSC queue public
1 parent 09b621e commit 883e57e

File tree

1 file changed

+1
-1
lines changed
  • core/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/internal

1 file changed

+1
-1
lines changed

core/kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/internal/LockFreeMPSCQueue.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private typealias Core<E> = LockFreeMPSCQueueCore<E>
3434
*
3535
* @suppress **This is unstable API and it is subject to change.**
3636
*/
37-
internal class LockFreeMPSCQueue<E : Any> {
37+
class LockFreeMPSCQueue<E : Any> {
3838
private val _cur = atomic(Core<E>(Core.INITIAL_CAPACITY))
3939

4040
// Note: it is not atomic w.r.t. remove operation (remove can transiently fail when isEmpty is false)

0 commit comments

Comments
 (0)