public final class com.lmax.disruptor.WorkProcessor<T> 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.WorkProcessor
  super_class: java.lang.Object
{
  private final java.util.concurrent.atomic.AtomicBoolean running;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.lmax.disruptor.Sequence sequence;
    descriptor: Lcom/lmax/disruptor/Sequence;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.lmax.disruptor.RingBuffer<T> ringBuffer;
    descriptor: Lcom/lmax/disruptor/RingBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/lmax/disruptor/RingBuffer<TT;>;

  private final com.lmax.disruptor.SequenceBarrier sequenceBarrier;
    descriptor: Lcom/lmax/disruptor/SequenceBarrier;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.lmax.disruptor.WorkHandler<? super T> workHandler;
    descriptor: Lcom/lmax/disruptor/WorkHandler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/lmax/disruptor/WorkHandler<-TT;>;

  private final com.lmax.disruptor.ExceptionHandler<? super T> exceptionHandler;
    descriptor: Lcom/lmax/disruptor/ExceptionHandler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/lmax/disruptor/ExceptionHandler<-TT;>;

  private final com.lmax.disruptor.Sequence workSequence;
    descriptor: Lcom/lmax/disruptor/Sequence;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.lmax.disruptor.EventReleaser eventReleaser;
    descriptor: Lcom/lmax/disruptor/EventReleaser;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.lmax.disruptor.TimeoutHandler timeoutHandler;
    descriptor: Lcom/lmax/disruptor/TimeoutHandler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(com.lmax.disruptor.RingBuffer<T>, com.lmax.disruptor.SequenceBarrier, com.lmax.disruptor.WorkHandler<? super T>, com.lmax.disruptor.ExceptionHandler<? super T>, com.lmax.disruptor.Sequence);
    descriptor: (Lcom/lmax/disruptor/RingBuffer;Lcom/lmax/disruptor/SequenceBarrier;Lcom/lmax/disruptor/WorkHandler;Lcom/lmax/disruptor/ExceptionHandler;Lcom/lmax/disruptor/Sequence;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // com.lmax.disruptor.WorkProcessor this
        start local 1 // com.lmax.disruptor.RingBuffer ringBuffer
        start local 2 // com.lmax.disruptor.SequenceBarrier sequenceBarrier
        start local 3 // com.lmax.disruptor.WorkHandler workHandler
        start local 4 // com.lmax.disruptor.ExceptionHandler exceptionHandler
        start local 5 // com.lmax.disruptor.Sequence workSequence
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 31
            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.WorkProcessor.running:Ljava/util/concurrent/atomic/AtomicBoolean;
         2: .line 32
            aload 0 /* this */
            new com.lmax.disruptor.Sequence
            dup
            ldc -1
            invokespecial com.lmax.disruptor.Sequence.<init>:(J)V
            putfield com.lmax.disruptor.WorkProcessor.sequence:Lcom/lmax/disruptor/Sequence;
         3: .line 39
            aload 0 /* this */
            new com.lmax.disruptor.WorkProcessor$1
            dup
            aload 0 /* this */
            invokespecial com.lmax.disruptor.WorkProcessor$1.<init>:(Lcom/lmax/disruptor/WorkProcessor;)V
            putfield com.lmax.disruptor.WorkProcessor.eventReleaser:Lcom/lmax/disruptor/EventReleaser;
         4: .line 67
            aload 0 /* this */
            aload 1 /* ringBuffer */
            putfield com.lmax.disruptor.WorkProcessor.ringBuffer:Lcom/lmax/disruptor/RingBuffer;
         5: .line 68
            aload 0 /* this */
            aload 2 /* sequenceBarrier */
            putfield com.lmax.disruptor.WorkProcessor.sequenceBarrier:Lcom/lmax/disruptor/SequenceBarrier;
         6: .line 69
            aload 0 /* this */
            aload 3 /* workHandler */
            putfield com.lmax.disruptor.WorkProcessor.workHandler:Lcom/lmax/disruptor/WorkHandler;
         7: .line 70
            aload 0 /* this */
            aload 4 /* exceptionHandler */
            putfield com.lmax.disruptor.WorkProcessor.exceptionHandler:Lcom/lmax/disruptor/ExceptionHandler;
         8: .line 71
            aload 0 /* this */
            aload 5 /* workSequence */
            putfield com.lmax.disruptor.WorkProcessor.workSequence:Lcom/lmax/disruptor/Sequence;
         9: .line 73
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.workHandler:Lcom/lmax/disruptor/WorkHandler;
            instanceof com.lmax.disruptor.EventReleaseAware
            ifeq 11
        10: .line 75
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.workHandler:Lcom/lmax/disruptor/WorkHandler;
            checkcast com.lmax.disruptor.EventReleaseAware
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.eventReleaser:Lcom/lmax/disruptor/EventReleaser;
            invokeinterface com.lmax.disruptor.EventReleaseAware.setEventReleaser:(Lcom/lmax/disruptor/EventReleaser;)V
        11: .line 78
      StackMap locals: com.lmax.disruptor.WorkProcessor com.lmax.disruptor.RingBuffer com.lmax.disruptor.SequenceBarrier com.lmax.disruptor.WorkHandler com.lmax.disruptor.ExceptionHandler com.lmax.disruptor.Sequence
      StackMap stack:
            aload 0 /* this */
            aload 3 /* workHandler */
            instanceof com.lmax.disruptor.TimeoutHandler
            ifeq 12
            aload 3 /* workHandler */
            checkcast com.lmax.disruptor.TimeoutHandler
            goto 13
      StackMap locals:
      StackMap stack: com.lmax.disruptor.WorkProcessor
        12: aconst_null
      StackMap locals: com.lmax.disruptor.WorkProcessor com.lmax.disruptor.RingBuffer com.lmax.disruptor.SequenceBarrier com.lmax.disruptor.WorkHandler com.lmax.disruptor.ExceptionHandler com.lmax.disruptor.Sequence
      StackMap stack: com.lmax.disruptor.WorkProcessor com.lmax.disruptor.TimeoutHandler
        13: putfield com.lmax.disruptor.WorkProcessor.timeoutHandler:Lcom/lmax/disruptor/TimeoutHandler;
        14: .line 79
            return
        end local 5 // com.lmax.disruptor.Sequence workSequence
        end local 4 // com.lmax.disruptor.ExceptionHandler exceptionHandler
        end local 3 // com.lmax.disruptor.WorkHandler workHandler
        end local 2 // com.lmax.disruptor.SequenceBarrier sequenceBarrier
        end local 1 // com.lmax.disruptor.RingBuffer ringBuffer
        end local 0 // com.lmax.disruptor.WorkProcessor this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   15     0              this  Lcom/lmax/disruptor/WorkProcessor<TT;>;
            0   15     1        ringBuffer  Lcom/lmax/disruptor/RingBuffer<TT;>;
            0   15     2   sequenceBarrier  Lcom/lmax/disruptor/SequenceBarrier;
            0   15     3       workHandler  Lcom/lmax/disruptor/WorkHandler<-TT;>;
            0   15     4  exceptionHandler  Lcom/lmax/disruptor/ExceptionHandler<-TT;>;
            0   15     5      workSequence  Lcom/lmax/disruptor/Sequence;
    Signature: (Lcom/lmax/disruptor/RingBuffer<TT;>;Lcom/lmax/disruptor/SequenceBarrier;Lcom/lmax/disruptor/WorkHandler<-TT;>;Lcom/lmax/disruptor/ExceptionHandler<-TT;>;Lcom/lmax/disruptor/Sequence;)V
    MethodParameters:
                  Name  Flags
      ringBuffer        final
      sequenceBarrier   final
      workHandler       final
      exceptionHandler  final
      workSequence      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.WorkProcessor this
         0: .line 84
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.sequence:Lcom/lmax/disruptor/Sequence;
            areturn
        end local 0 // com.lmax.disruptor.WorkProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/WorkProcessor<TT;>;

  public void halt();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.WorkProcessor this
         0: .line 90
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.running:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
         1: .line 91
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.sequenceBarrier:Lcom/lmax/disruptor/SequenceBarrier;
            invokeinterface com.lmax.disruptor.SequenceBarrier.alert:()V
         2: .line 92
            return
        end local 0 // com.lmax.disruptor.WorkProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/lmax/disruptor/WorkProcessor<TT;>;

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

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // com.lmax.disruptor.WorkProcessor this
         0: .line 108
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.running:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifne 2
         1: .line 110
            new java.lang.IllegalStateException
            dup
            ldc "Thread is already running"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.sequenceBarrier:Lcom/lmax/disruptor/SequenceBarrier;
            invokeinterface com.lmax.disruptor.SequenceBarrier.clearAlert:()V
         3: .line 114
            aload 0 /* this */
            invokevirtual com.lmax.disruptor.WorkProcessor.notifyStart:()V
         4: .line 116
            iconst_1
            istore 1 /* processedSequence */
        start local 1 // boolean processedSequence
         5: .line 117
            ldc -9223372036854775808
            lstore 2 /* cachedAvailableSequence */
        start local 2 // long cachedAvailableSequence
         6: .line 118
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.sequence:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lstore 4 /* nextSequence */
        start local 4 // long nextSequence
         7: .line 119
            aconst_null
            astore 6 /* event */
        start local 6 // java.lang.Object event
         8: .line 129
      StackMap locals: com.lmax.disruptor.WorkProcessor int long long java.lang.Object
      StackMap stack:
            iload 1 /* processedSequence */
            ifeq 13
         9: .line 131
            iconst_0
            istore 1 /* processedSequence */
        10: .line 134
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.workSequence:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lconst_1
            ladd
            lstore 4 /* nextSequence */
        11: .line 135
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.sequence:Lcom/lmax/disruptor/Sequence;
            lload 4 /* nextSequence */
            lconst_1
            lsub
            invokevirtual com.lmax.disruptor.Sequence.set:(J)V
        12: .line 137
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.workSequence:Lcom/lmax/disruptor/Sequence;
            lload 4 /* nextSequence */
            lconst_1
            lsub
            lload 4 /* nextSequence */
            invokevirtual com.lmax.disruptor.Sequence.compareAndSet:(JJ)Z
            ifeq 10
        13: .line 140
      StackMap locals:
      StackMap stack:
            lload 2 /* cachedAvailableSequence */
            lload 4 /* nextSequence */
            lcmp
            iflt 18
        14: .line 142
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.ringBuffer:Lcom/lmax/disruptor/RingBuffer;
            lload 4 /* nextSequence */
            invokevirtual com.lmax.disruptor.RingBuffer.get:(J)Ljava/lang/Object;
            astore 6 /* event */
        15: .line 143
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.workHandler:Lcom/lmax/disruptor/WorkHandler;
            aload 6 /* event */
            invokeinterface com.lmax.disruptor.WorkHandler.onEvent:(Ljava/lang/Object;)V
        16: .line 144
            iconst_1
            istore 1 /* processedSequence */
        17: .line 145
            goto 8
        18: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.sequenceBarrier:Lcom/lmax/disruptor/SequenceBarrier;
            lload 4 /* nextSequence */
            invokeinterface com.lmax.disruptor.SequenceBarrier.waitFor:(J)J
            lstore 2 /* cachedAvailableSequence */
        19: .line 150
            goto 8
        20: .line 151
      StackMap locals:
      StackMap stack: com.lmax.disruptor.TimeoutException
            pop
        21: .line 153
            aload 0 /* this */
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.sequence:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            invokevirtual com.lmax.disruptor.WorkProcessor.notifyTimeout:(J)V
            goto 8
        22: .line 155
      StackMap locals:
      StackMap stack: com.lmax.disruptor.AlertException
            pop
        23: .line 157
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.running:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 8
        24: .line 159
            goto 29
        25: .line 162
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7 /* ex */
        start local 7 // java.lang.Throwable ex
        26: .line 165
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.exceptionHandler:Lcom/lmax/disruptor/ExceptionHandler;
            aload 7 /* ex */
            lload 4 /* nextSequence */
            aload 6 /* event */
            invokeinterface com.lmax.disruptor.ExceptionHandler.handleEventException:(Ljava/lang/Throwable;JLjava/lang/Object;)V
        27: .line 166
            iconst_1
            istore 1 /* processedSequence */
        end local 7 // java.lang.Throwable ex
        28: .line 120
            goto 8
        29: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.lmax.disruptor.WorkProcessor.notifyShutdown:()V
        30: .line 172
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.running:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.set:(Z)V
        31: .line 173
            return
        end local 6 // java.lang.Object event
        end local 4 // long nextSequence
        end local 2 // long cachedAvailableSequence
        end local 1 // boolean processedSequence
        end local 0 // com.lmax.disruptor.WorkProcessor this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   32     0                     this  Lcom/lmax/disruptor/WorkProcessor<TT;>;
            5   32     1        processedSequence  Z
            6   32     2  cachedAvailableSequence  J
            7   32     4             nextSequence  J
            8   32     6                    event  TT;
           26   28     7                       ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           8    19      20  Class com.lmax.disruptor.TimeoutException
           8    19      22  Class com.lmax.disruptor.AlertException
           8    19      25  Class java.lang.Throwable

  private void notifyTimeout(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.lmax.disruptor.WorkProcessor this
        start local 1 // long availableSequence
         0: .line 179
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.timeoutHandler:Lcom/lmax/disruptor/TimeoutHandler;
            ifnull 5
         1: .line 181
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.timeoutHandler:Lcom/lmax/disruptor/TimeoutHandler;
            lload 1 /* availableSequence */
            invokeinterface com.lmax.disruptor.TimeoutHandler.onTimeout:(J)V
         2: .line 183
            goto 5
         3: .line 184
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3 /* e */
        start local 3 // java.lang.Throwable e
         4: .line 186
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.exceptionHandler:Lcom/lmax/disruptor/ExceptionHandler;
            aload 3 /* e */
            lload 1 /* availableSequence */
            aconst_null
            invokeinterface com.lmax.disruptor.ExceptionHandler.handleEventException:(Ljava/lang/Throwable;JLjava/lang/Object;)V
        end local 3 // java.lang.Throwable e
         5: .line 188
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long availableSequence
        end local 0 // com.lmax.disruptor.WorkProcessor this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    6     0               this  Lcom/lmax/disruptor/WorkProcessor<TT;>;
            0    6     1  availableSequence  J
            4    5     3                  e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.Throwable
    MethodParameters:
                   Name  Flags
      availableSequence  final

  private void notifyStart();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.lmax.disruptor.WorkProcessor this
         0: .line 192
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.workHandler:Lcom/lmax/disruptor/WorkHandler;
            instanceof com.lmax.disruptor.LifecycleAware
            ifeq 5
         1: .line 196
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.workHandler:Lcom/lmax/disruptor/WorkHandler;
            checkcast com.lmax.disruptor.LifecycleAware
            invokeinterface com.lmax.disruptor.LifecycleAware.onStart:()V
         2: .line 197
            goto 5
         3: .line 198
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1 /* ex */
        start local 1 // java.lang.Throwable ex
         4: .line 200
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.exceptionHandler:Lcom/lmax/disruptor/ExceptionHandler;
            aload 1 /* ex */
            invokeinterface com.lmax.disruptor.ExceptionHandler.handleOnStartException:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable ex
         5: .line 203
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.lmax.disruptor.WorkProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/lmax/disruptor/WorkProcessor<TT;>;
            4    5     1    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable

  private void notifyShutdown();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.lmax.disruptor.WorkProcessor this
         0: .line 207
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.workHandler:Lcom/lmax/disruptor/WorkHandler;
            instanceof com.lmax.disruptor.LifecycleAware
            ifeq 5
         1: .line 211
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.workHandler:Lcom/lmax/disruptor/WorkHandler;
            checkcast com.lmax.disruptor.LifecycleAware
            invokeinterface com.lmax.disruptor.LifecycleAware.onShutdown:()V
         2: .line 212
            goto 5
         3: .line 213
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1 /* ex */
        start local 1 // java.lang.Throwable ex
         4: .line 215
            aload 0 /* this */
            getfield com.lmax.disruptor.WorkProcessor.exceptionHandler:Lcom/lmax/disruptor/ExceptionHandler;
            aload 1 /* ex */
            invokeinterface com.lmax.disruptor.ExceptionHandler.handleOnShutdownException:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable ex
         5: .line 218
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.lmax.disruptor.WorkProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/lmax/disruptor/WorkProcessor<TT;>;
            4    5     1    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lcom/lmax/disruptor/EventProcessor;
SourceFile: "WorkProcessor.java"
NestMembers:
  com.lmax.disruptor.WorkProcessor$1
InnerClasses:
  com.lmax.disruptor.WorkProcessor$1