Class ArrayRingBuffer<T>

java.lang.Object
org.infinispan.commons.util.ArrayRingBuffer<T>

public final class ArrayRingBuffer<T> extends Object
It's a growable ring buffer that allows to move tail/head sequences, clear, append, set/replace at specific positions. This version requires headSequence to always be pointing at the first non null value if one is present.
Author:
Francesco Nigro
  • Constructor Details Link icon

    • ArrayRingBuffer Link icon

      public ArrayRingBuffer()
    • ArrayRingBuffer Link icon

      public ArrayRingBuffer(int initialSize)
    • ArrayRingBuffer Link icon

      public ArrayRingBuffer(int initialSize, long headSequence)
  • Method Details Link icon

    • size Link icon

      public int size()
    • size Link icon

      public int size(boolean count_null_elements)
    • getTailSequence Link icon

      public long getTailSequence()
    • getHeadSequence Link icon

      public long getHeadSequence()
    • forEach Link icon

      public void forEach(ObjLongConsumer<? super T> consumer)
    • availableCapacityWithoutResizing Link icon

      public int availableCapacityWithoutResizing()
    • contains Link icon

      public boolean contains(long index)
    • dropTailToHead Link icon

      public void dropTailToHead()
    • clear Link icon

      public void clear()
    • dropTailTo Link icon

      public int dropTailTo(long indexInclusive)
      Remove all elements from tailSequence back to indexInclusive.
      At the end of this operation tailSequence is equals to indexInclusive. Note there can be null values between tailSequence and headSequence as only headSequence is caught up to a non null value on modification.
       eg:
       elements = [A, B, C]
       tail = 3
       head = 0
      
       dropTailTo(1)
      
       elements = [A]
       tail = 1
       head = 0
       
    • dropHeadUntil Link icon

      public int dropHeadUntil(long indexExclusive)
      Remove all elements from headSequence to at least indexExclusive until a non null value is found if present.
      At the end of this operation headSequence will be greater than or equal indexExclusive. If there are no more values left then headSequence will equal tailSequence.
       eg:
       elements = [A, B, C]
       tail = 3
       head = 0
      
       dropHeadUntil(1)
      
       elements = [B, C]
       tail = 3
       head = 1
       
    • get Link icon

      public T get(long index)
    • set Link icon

      public T set(long index, T e)
    • add Link icon

      public void add(T e)
    • isEmpty Link icon

      public boolean isEmpty()
    • peek Link icon

      public T peek()
    • poll Link icon

      public T poll()
      Removes the element at head, does not catch up the headSequence but will increment
    • remove Link icon

      public T remove(long index)
      Removes an element at index
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object