public class io.vertx.core.impl.utils.ConcurrentCyclicSequence<T> implements java.lang.Iterable<T>, java.util.Iterator<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.impl.utils.ConcurrentCyclicSequence
  super_class: java.lang.Object
{
  private static final java.lang.Object[] EMPTY_ARRAY;
    descriptor: [Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.concurrent.atomic.AtomicInteger pos;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Object[] elements;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 31
            iconst_0
            anewarray java.lang.Object
            putstatic io.vertx.core.impl.utils.ConcurrentCyclicSequence.EMPTY_ARRAY:[Ljava/lang/Object;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
         0: .line 40
            aload 0 /* this */
            iconst_0
            getstatic io.vertx.core.impl.utils.ConcurrentCyclicSequence.EMPTY_ARRAY:[Ljava/lang/Object;
            invokespecial io.vertx.core.impl.utils.ConcurrentCyclicSequence.<init>:(I[Ljava/lang/Object;)V
         1: .line 41
            return
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;

  public void <init>();
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
        start local 1 // java.lang.Object[] elements
         0: .line 48
            aload 0 /* this */
            iconst_0
            aload 1 /* elements */
            aload 1 /* elements */
            arraylength
            ldc [Ljava/lang/Object;
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;ILjava/lang/Class;)[Ljava/lang/Object;
            invokespecial io.vertx.core.impl.utils.ConcurrentCyclicSequence.<init>:(I[Ljava/lang/Object;)V
         1: .line 49
            return
        end local 1 // java.lang.Object[] elements
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;
            0    2     1  elements  [Ljava/lang/Object;
    Signature: ([TT;)V
    RuntimeVisibleAnnotations: 
      java.lang.SafeVarargs()
    MethodParameters:
          Name  Flags
      elements  

  private void <init>(int, java.lang.Object[]);
    descriptor: (I[Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
        start local 1 // int pos
        start local 2 // java.lang.Object[] elements
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicInteger
            dup
            iload 1 /* pos */
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:(I)V
            putfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.pos:Ljava/util/concurrent/atomic/AtomicInteger;
         2: .line 53
            aload 0 /* this */
            aload 2 /* elements */
            putfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
         3: .line 54
            return
        end local 2 // java.lang.Object[] elements
        end local 1 // int pos
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;
            0    4     1       pos  I
            0    4     2  elements  [Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      pos       
      elements  

  public int index();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
         0: .line 60
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            arraylength
            ifle 1
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.pos:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            arraylength
            irem
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;

  public T first();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
         0: .line 68
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            arraylength
            ifle 1
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            iconst_0
            aaload
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;
    Signature: ()TT;

  public io.vertx.core.impl.utils.ConcurrentCyclicSequence<T> add(T);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
        start local 1 // java.lang.Object element
         0: .line 77
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            arraylength
            istore 2 /* len */
        start local 2 // int len
         1: .line 78
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            iload 2 /* len */
            iconst_1
            iadd
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            astore 3 /* copy */
        start local 3 // java.lang.Object[] copy
         2: .line 79
            aload 3 /* copy */
            iload 2 /* len */
            aload 1 /* element */
            aastore
         3: .line 80
            new io.vertx.core.impl.utils.ConcurrentCyclicSequence
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.pos:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            aload 3 /* copy */
            invokespecial io.vertx.core.impl.utils.ConcurrentCyclicSequence.<init>:(I[Ljava/lang/Object;)V
            areturn
        end local 3 // java.lang.Object[] copy
        end local 2 // int len
        end local 1 // java.lang.Object element
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;
            0    4     1  element  TT;
            1    4     2      len  I
            2    4     3     copy  [Ljava/lang/Object;
    Signature: (TT;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public io.vertx.core.impl.utils.ConcurrentCyclicSequence<T> remove(T);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
        start local 1 // java.lang.Object element
         0: .line 92
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            arraylength
            istore 2 /* len */
        start local 2 // int len
         1: .line 93
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 11
         3: .line 94
      StackMap locals: int int
      StackMap stack:
            aload 1 /* element */
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 10
         4: .line 95
            iload 2 /* len */
            iconst_1
            if_icmple 9
         5: .line 96
            iload 2 /* len */
            iconst_1
            isub
            anewarray java.lang.Object
            astore 4 /* copy */
        start local 4 // java.lang.Object[] copy
         6: .line 97
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            iconst_0
            aload 4 /* copy */
            iconst_0
            iload 3 /* i */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 98
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            iload 3 /* i */
            iconst_1
            iadd
            aload 4 /* copy */
            iload 3 /* i */
            iload 2 /* len */
            iload 3 /* i */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 99
            new io.vertx.core.impl.utils.ConcurrentCyclicSequence
            dup
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.pos:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.get:()I
            aload 4 /* copy */
            arraylength
            irem
            aload 4 /* copy */
            invokespecial io.vertx.core.impl.utils.ConcurrentCyclicSequence.<init>:(I[Ljava/lang/Object;)V
            areturn
        end local 4 // java.lang.Object[] copy
         9: .line 101
      StackMap locals:
      StackMap stack:
            new io.vertx.core.impl.utils.ConcurrentCyclicSequence
            dup
            invokespecial io.vertx.core.impl.utils.ConcurrentCyclicSequence.<init>:()V
            areturn
        10: .line 93
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            iload 2 /* len */
            if_icmplt 3
        end local 3 // int i
        12: .line 105
            aload 0 /* this */
            areturn
        end local 2 // int len
        end local 1 // java.lang.Object element
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;
            0   13     1  element  TT;
            1   13     2      len  I
            2   12     3        i  I
            6    9     4     copy  [Ljava/lang/Object;
    Signature: (TT;)Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;
    MethodParameters:
         Name  Flags
      element  

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
         0: .line 113
            iconst_1
            ireturn
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;

  public T next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
         0: .line 122
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            arraylength
            istore 1 /* len */
        start local 1 // int len
         1: .line 123
            iload 1 /* len */
            tableswitch { // 0 - 1
                    0: 2
                    1: 3
              default: 4
          }
         2: .line 125
      StackMap locals: int
      StackMap stack:
            aconst_null
            areturn
         3: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            iconst_0
            aaload
            areturn
         4: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.pos:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.getAndIncrement:()I
            istore 2 /* p */
        start local 2 // int p
         5: .line 131
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            iload 2 /* p */
            iload 1 /* len */
            irem
            invokestatic java.lang.Math.abs:(I)I
            aaload
            areturn
        end local 2 // int p
        end local 1 // int len
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;
            1    6     1   len  I
            5    6     2     p  I
    Signature: ()TT;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
         0: .line 139
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            arraylength
            ireturn
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;

  public java.util.Iterator<T> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
         0: .line 148
            aload 0 /* this */
            getfield io.vertx.core.impl.utils.ConcurrentCyclicSequence.elements:[Ljava/lang/Object;
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // io.vertx.core.impl.utils.ConcurrentCyclicSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/impl/utils/ConcurrentCyclicSequence<TT;>;
    Signature: ()Ljava/util/Iterator<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Ljava/lang/Iterable<TT;>;Ljava/util/Iterator<TT;>;
SourceFile: "ConcurrentCyclicSequence.java"