Package com.couchbase.client.core.util
Class NativeImageHelper
java.lang.Object
com.couchbase.client.core.util.NativeImageHelper
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> Queue<T>
createMpscArrayQueue
(int capacity) This static factory method has been added in order to help the substitutions for native image compatibility in the Quarkus extension.
-
Method Details
-
createMpscArrayQueue
This static factory method has been added in order to help the substitutions for native image compatibility in the Quarkus extension. In the extension, this is substituted for an MpscAtomicUnpaddedArrayQueue, a slightly less performant but memory safe variant. SeeMpscArrayQueue
andMpscAtomicUnpaddedArrayQueue
.- Type Parameters:
T
- The type held by the queue.- Parameters:
capacity
- The capacity of the queue- Returns:
- A new MpscArrayQueue.
-