Class NativeImageHelper

java.lang.Object
com.couchbase.client.core.util.NativeImageHelper

@Internal public class NativeImageHelper extends Object
  • Method Details

    • createMpscArrayQueue

      @UsedBy(QUARKUS_COUCHBASE) public static <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. In the extension, this is substituted for an MpscAtomicUnpaddedArrayQueue, a slightly less performant but memory safe variant. See MpscArrayQueue and MpscAtomicUnpaddedArrayQueue.
      Type Parameters:
      T - The type held by the queue.
      Parameters:
      capacity - The capacity of the queue
      Returns:
      A new MpscArrayQueue.