public final class com.lmax.disruptor.NoOpEventProcessor implements com.lmax.disruptor.EventProcessor
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.lmax.disruptor.NoOpEventProcessor
  super_class: java.lang.Object
{
  private final com.lmax.disruptor.NoOpEventProcessor$SequencerFollowingSequence sequence;
    descriptor: Lcom/lmax/disruptor/NoOpEventProcessor$SequencerFollowingSequence;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(com.lmax.disruptor.RingBuffer<?>);
    descriptor: (Lcom/lmax/disruptor/RingBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.lmax.disruptor.NoOpEventProcessor this
        start local 1 // com.lmax.disruptor.RingBuffer sequencer
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 28
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:(Z)V
            putfield com.lmax.disruptor.NoOpEventProcessor.running:Ljava/util/concurrent/atomic/AtomicBoolean;
         2: .line 37
            aload 0 /* this */
            new com.lmax.disruptor.NoOpEventProcessor$SequencerFollowingSequence
            dup
            aload 1 /* sequencer */
            invokespecial com.lmax.disruptor.NoOpEventProcessor$SequencerFollowingSequence.<init>:(Lcom/lmax/disruptor/RingBuffer;)V
            putfield com.lmax.disruptor.NoOpEventProcessor.sequence:Lcom/lmax/disruptor/NoOpEventProcessor$SequencerFollowingSequence;
         3: .line 38
            return
        end local 1 // com.lmax.disruptor.RingBuffer sequencer
        end local 0 // com.lmax.disruptor.NoOpEventProcessor this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lcom/lmax/disruptor/NoOpEventProcessor;
            0    4     1  sequencer  Lcom/lmax/disruptor/RingBuffer<*>;
    Signature: (Lcom/lmax/disruptor/RingBuffer<*>;)V
    MethodParameters:
           Name  Flags
      sequencer  final

  public com.lmax.disruptor.Sequence getSequence();
    descriptor: ()Lcom/lmax/disruptor/Sequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.NoOpEventProcessor this
         0: .line 43
            aload 0 /* this */
            getfield com.lmax.disruptor.NoOpEventProcessor.sequence:Lcom/lmax/disruptor/NoOpEventProcessor$SequencerFollowingSequence;
            areturn
        end local 0 // com.lmax.disruptor.NoOpEventProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/NoOpEventProcessor;

  public void halt();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.NoOpEventProcessor this
         0: .line 49
            aload 0 /* this */
            getfield com.lmax.disruptor.NoOpEventProcessor.running:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         1: .line 50
            return
        end local 0 // com.lmax.disruptor.NoOpEventProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/lmax/disruptor/NoOpEventProcessor;

  public boolean isRunning();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.NoOpEventProcessor this
         0: .line 55
            aload 0 /* this */
            getfield com.lmax.disruptor.NoOpEventProcessor.running:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ireturn
        end local 0 // com.lmax.disruptor.NoOpEventProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/NoOpEventProcessor;

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.NoOpEventProcessor this
         0: .line 61
            aload 0 /* this */
            getfield com.lmax.disruptor.NoOpEventProcessor.running:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifne 2
         1: .line 63
            new java.lang.IllegalStateException
            dup
            ldc "Thread is already running"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 65
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.lmax.disruptor.NoOpEventProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/lmax/disruptor/NoOpEventProcessor;
}
SourceFile: "NoOpEventProcessor.java"
NestMembers:
  com.lmax.disruptor.NoOpEventProcessor$SequencerFollowingSequence
InnerClasses:
  private final SequencerFollowingSequence = com.lmax.disruptor.NoOpEventProcessor$SequencerFollowingSequence of com.lmax.disruptor.NoOpEventProcessor