public final class io.reactivex.processors.UnicastProcessor<T> extends io.reactivex.processors.FlowableProcessor<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.processors.UnicastProcessor
  super_class: io.reactivex.processors.FlowableProcessor
{
  final io.reactivex.internal.queue.SpscLinkedArrayQueue<T> queue;
    descriptor: Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;

  final java.util.concurrent.atomic.AtomicReference<java.lang.Runnable> onTerminate;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Ljava/lang/Runnable;>;

  final boolean delayError;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  volatile boolean done;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  java.lang.Throwable error;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0000) 

  final java.util.concurrent.atomic.AtomicReference<org.reactivestreams.Subscriber<? super T>> downstream;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lorg/reactivestreams/Subscriber<-TT;>;>;

  volatile boolean cancelled;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  final java.util.concurrent.atomic.AtomicBoolean once;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0010) ACC_FINAL

  final io.reactivex.internal.subscriptions.BasicIntQueueSubscription<T> wip;
    descriptor: Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription<TT;>;

  final java.util.concurrent.atomic.AtomicLong requested;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0010) ACC_FINAL

  boolean enableOperatorFusion;
    descriptor: Z
    flags: (0x0000) 

  public static <T> io.reactivex.processors.UnicastProcessor<T> create();
    descriptor: ()Lio/reactivex/processors/UnicastProcessor;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 183
            new io.reactivex.processors.UnicastProcessor
            dup
            invokestatic io.reactivex.processors.UnicastProcessor.bufferSize:()I
            invokespecial io.reactivex.processors.UnicastProcessor.<init>:(I)V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <T:Ljava/lang/Object;>()Lio/reactivex/processors/UnicastProcessor<TT;>;
    RuntimeVisibleAnnotations: 
      io.reactivex.annotations.CheckReturnValue()
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()

  public static <T> io.reactivex.processors.UnicastProcessor<T> create(int);
    descriptor: (I)Lio/reactivex/processors/UnicastProcessor;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int capacityHint
         0: .line 195
            new io.reactivex.processors.UnicastProcessor
            dup
            iload 0 /* capacityHint */
            invokespecial io.reactivex.processors.UnicastProcessor.<init>:(I)V
            areturn
        end local 0 // int capacityHint
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  capacityHint  I
    Signature: <T:Ljava/lang/Object;>(I)Lio/reactivex/processors/UnicastProcessor<TT;>;
    RuntimeVisibleAnnotations: 
      io.reactivex.annotations.CheckReturnValue()
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    MethodParameters:
              Name  Flags
      capacityHint  

  public static <T> io.reactivex.processors.UnicastProcessor<T> create(boolean);
    descriptor: (Z)Lio/reactivex/processors/UnicastProcessor;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // boolean delayError
         0: .line 209
            new io.reactivex.processors.UnicastProcessor
            dup
            invokestatic io.reactivex.processors.UnicastProcessor.bufferSize:()I
            aconst_null
            iload 0 /* delayError */
            invokespecial io.reactivex.processors.UnicastProcessor.<init>:(ILjava/lang/Runnable;Z)V
            areturn
        end local 0 // boolean delayError
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0  delayError  Z
    Signature: <T:Ljava/lang/Object;>(Z)Lio/reactivex/processors/UnicastProcessor<TT;>;
    RuntimeVisibleAnnotations: 
      io.reactivex.annotations.CheckReturnValue()
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    MethodParameters:
            Name  Flags
      delayError  

  public static <T> io.reactivex.processors.UnicastProcessor<T> create(int, java.lang.Runnable);
    descriptor: (ILjava/lang/Runnable;)Lio/reactivex/processors/UnicastProcessor;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // int capacityHint
        start local 1 // java.lang.Runnable onCancelled
         0: .line 227
            aload 1 /* onCancelled */
            ldc "onTerminate"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 228
            new io.reactivex.processors.UnicastProcessor
            dup
            iload 0 /* capacityHint */
            aload 1 /* onCancelled */
            invokespecial io.reactivex.processors.UnicastProcessor.<init>:(ILjava/lang/Runnable;)V
            areturn
        end local 1 // java.lang.Runnable onCancelled
        end local 0 // int capacityHint
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0  capacityHint  I
            0    2     1   onCancelled  Ljava/lang/Runnable;
    Signature: <T:Ljava/lang/Object;>(ILjava/lang/Runnable;)Lio/reactivex/processors/UnicastProcessor<TT;>;
    RuntimeVisibleAnnotations: 
      io.reactivex.annotations.CheckReturnValue()
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    MethodParameters:
              Name  Flags
      capacityHint  
      onCancelled   

  public static <T> io.reactivex.processors.UnicastProcessor<T> create(int, java.lang.Runnable, boolean);
    descriptor: (ILjava/lang/Runnable;Z)Lio/reactivex/processors/UnicastProcessor;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // int capacityHint
        start local 1 // java.lang.Runnable onCancelled
        start local 2 // boolean delayError
         0: .line 248
            aload 1 /* onCancelled */
            ldc "onTerminate"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 249
            new io.reactivex.processors.UnicastProcessor
            dup
            iload 0 /* capacityHint */
            aload 1 /* onCancelled */
            iload 2 /* delayError */
            invokespecial io.reactivex.processors.UnicastProcessor.<init>:(ILjava/lang/Runnable;Z)V
            areturn
        end local 2 // boolean delayError
        end local 1 // java.lang.Runnable onCancelled
        end local 0 // int capacityHint
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0  capacityHint  I
            0    2     1   onCancelled  Ljava/lang/Runnable;
            0    2     2    delayError  Z
    Signature: <T:Ljava/lang/Object;>(ILjava/lang/Runnable;Z)Lio/reactivex/processors/UnicastProcessor<TT;>;
    RuntimeVisibleAnnotations: 
      io.reactivex.annotations.CheckReturnValue()
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    MethodParameters:
              Name  Flags
      capacityHint  
      onCancelled   
      delayError    

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // int capacityHint
         0: .line 258
            aload 0 /* this */
            iload 1 /* capacityHint */
            aconst_null
            iconst_1
            invokespecial io.reactivex.processors.UnicastProcessor.<init>:(ILjava/lang/Runnable;Z)V
         1: .line 259
            return
        end local 1 // int capacityHint
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0    2     1  capacityHint  I
    MethodParameters:
              Name  Flags
      capacityHint  

  void <init>(int, java.lang.Runnable);
    descriptor: (ILjava/lang/Runnable;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // int capacityHint
        start local 2 // java.lang.Runnable onTerminate
         0: .line 269
            aload 0 /* this */
            iload 1 /* capacityHint */
            aload 2 /* onTerminate */
            iconst_1
            invokespecial io.reactivex.processors.UnicastProcessor.<init>:(ILjava/lang/Runnable;Z)V
         1: .line 270
            return
        end local 2 // java.lang.Runnable onTerminate
        end local 1 // int capacityHint
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0    2     1  capacityHint  I
            0    2     2   onTerminate  Ljava/lang/Runnable;
    MethodParameters:
              Name  Flags
      capacityHint  
      onTerminate   

  void <init>(int, java.lang.Runnable, boolean);
    descriptor: (ILjava/lang/Runnable;Z)V
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // int capacityHint
        start local 2 // java.lang.Runnable onTerminate
        start local 3 // boolean delayError
         0: .line 281
            aload 0 /* this */
            invokespecial io.reactivex.processors.FlowableProcessor.<init>:()V
         1: .line 282
            aload 0 /* this */
            new io.reactivex.internal.queue.SpscLinkedArrayQueue
            dup
            iload 1 /* capacityHint */
            ldc "capacityHint"
            invokestatic io.reactivex.internal.functions.ObjectHelper.verifyPositive:(ILjava/lang/String;)I
            invokespecial io.reactivex.internal.queue.SpscLinkedArrayQueue.<init>:(I)V
            putfield io.reactivex.processors.UnicastProcessor.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
         2: .line 283
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            aload 2 /* onTerminate */
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:(Ljava/lang/Object;)V
            putfield io.reactivex.processors.UnicastProcessor.onTerminate:Ljava/util/concurrent/atomic/AtomicReference;
         3: .line 284
            aload 0 /* this */
            iload 3 /* delayError */
            putfield io.reactivex.processors.UnicastProcessor.delayError:Z
         4: .line 285
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
         5: .line 286
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield io.reactivex.processors.UnicastProcessor.once:Ljava/util/concurrent/atomic/AtomicBoolean;
         6: .line 287
            aload 0 /* this */
            new io.reactivex.processors.UnicastProcessor$UnicastQueueSubscription
            dup
            aload 0 /* this */
            invokespecial io.reactivex.processors.UnicastProcessor$UnicastQueueSubscription.<init>:(Lio/reactivex/processors/UnicastProcessor;)V
            putfield io.reactivex.processors.UnicastProcessor.wip:Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription;
         7: .line 288
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.processors.UnicastProcessor.requested:Ljava/util/concurrent/atomic/AtomicLong;
         8: .line 289
            return
        end local 3 // boolean delayError
        end local 2 // java.lang.Runnable onTerminate
        end local 1 // int capacityHint
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0    9     1  capacityHint  I
            0    9     2   onTerminate  Ljava/lang/Runnable;
            0    9     3    delayError  Z
    MethodParameters:
              Name  Flags
      capacityHint  
      onTerminate   
      delayError    

  void doTerminate();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.reactivex.processors.UnicastProcessor this
         0: .line 292
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.onTerminate:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.getAndSet:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Runnable
            astore 1 /* r */
        start local 1 // java.lang.Runnable r
         1: .line 293
            aload 1 /* r */
            ifnull 3
         2: .line 294
            aload 1 /* r */
            invokeinterface java.lang.Runnable.run:()V
         3: .line 296
      StackMap locals: java.lang.Runnable
      StackMap stack:
            return
        end local 1 // java.lang.Runnable r
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            1    4     1     r  Ljava/lang/Runnable;

  void drainRegular(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=12, args_size=2
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // org.reactivestreams.Subscriber a
         0: .line 299
            iconst_1
            istore 2 /* missed */
        start local 2 // int missed
         1: .line 301
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            astore 3 /* q */
        start local 3 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
         2: .line 302
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.delayError:Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: int io.reactivex.internal.queue.SpscLinkedArrayQueue
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: istore 4 /* failFast */
        start local 4 // boolean failFast
         5: .line 305
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.requested:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 5 /* r */
        start local 5 // long r
         6: .line 306
            lconst_0
            lstore 7 /* e */
        start local 7 // long e
         7: .line 308
            goto 19
         8: .line 309
      StackMap locals: long long
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            istore 9 /* d */
        start local 9 // boolean d
         9: .line 311
            aload 3 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.poll:()Ljava/lang/Object;
            astore 10 /* t */
        start local 10 // java.lang.Object t
        10: .line 312
            aload 10 /* t */
            ifnonnull 11
            iconst_1
            goto 12
      StackMap locals: int java.lang.Object
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: istore 11 /* empty */
        start local 11 // boolean empty
        13: .line 314
            aload 0 /* this */
            iload 4 /* failFast */
            iload 9 /* d */
            iload 11 /* empty */
            aload 1 /* a */
            aload 3 /* q */
            invokevirtual io.reactivex.processors.UnicastProcessor.checkTerminated:(ZZZLorg/reactivestreams/Subscriber;Lio/reactivex/internal/queue/SpscLinkedArrayQueue;)Z
            ifeq 15
        14: .line 315
            return
        15: .line 318
      StackMap locals: int
      StackMap stack:
            iload 11 /* empty */
            ifeq 17
        16: .line 319
            goto 20
        17: .line 322
      StackMap locals:
      StackMap stack:
            aload 1 /* a */
            aload 10 /* t */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        18: .line 324
            lload 7 /* e */
            lconst_1
            ladd
            lstore 7 /* e */
        end local 11 // boolean empty
        end local 10 // java.lang.Object t
        end local 9 // boolean d
        19: .line 308
      StackMap locals:
      StackMap stack:
            lload 5 /* r */
            lload 7 /* e */
            lcmp
            ifne 8
        20: .line 327
      StackMap locals:
      StackMap stack:
            lload 5 /* r */
            lload 7 /* e */
            lcmp
            ifne 22
            aload 0 /* this */
            iload 4 /* failFast */
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            aload 3 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.isEmpty:()Z
            aload 1 /* a */
            aload 3 /* q */
            invokevirtual io.reactivex.processors.UnicastProcessor.checkTerminated:(ZZZLorg/reactivestreams/Subscriber;Lio/reactivex/internal/queue/SpscLinkedArrayQueue;)Z
            ifeq 22
        21: .line 328
            return
        22: .line 331
      StackMap locals:
      StackMap stack:
            lload 7 /* e */
            lconst_0
            lcmp
            ifeq 24
            lload 5 /* r */
            ldc 9223372036854775807
            lcmp
            ifeq 24
        23: .line 332
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 7 /* e */
            lneg
            invokevirtual java.util.concurrent.atomic.AtomicLong.addAndGet:(J)J
            pop2
        24: .line 335
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.wip:Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription;
            iload 2 /* missed */
            ineg
            invokevirtual io.reactivex.internal.subscriptions.BasicIntQueueSubscription.addAndGet:(I)I
            istore 2 /* missed */
        25: .line 336
            iload 2 /* missed */
            ifne 5
        end local 7 // long e
        end local 5 // long r
        26: .line 340
            return
        end local 4 // boolean failFast
        end local 3 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
        end local 2 // int missed
        end local 1 // org.reactivestreams.Subscriber a
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   27     0      this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0   27     1         a  Lorg/reactivestreams/Subscriber<-TT;>;
            1   27     2    missed  I
            2   27     3         q  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            5   27     4  failFast  Z
            6   26     5         r  J
            7   26     7         e  J
            9   19     9         d  Z
           10   19    10         t  TT;
           13   19    11     empty  Z
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
      Name  Flags
      a     

  void drainFused(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // org.reactivestreams.Subscriber a
         0: .line 343
            iconst_1
            istore 2 /* missed */
        start local 2 // int missed
         1: .line 345
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            astore 3 /* q */
        start local 3 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
         2: .line 346
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.delayError:Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: int io.reactivex.internal.queue.SpscLinkedArrayQueue
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: istore 4 /* failFast */
        start local 4 // boolean failFast
         5: .line 349
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.cancelled:Z
            ifeq 9
         6: .line 350
            aload 3 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         7: .line 351
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         8: .line 352
            return
         9: .line 355
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            istore 5 /* d */
        start local 5 // boolean d
        10: .line 357
            iload 4 /* failFast */
            ifeq 15
            iload 5 /* d */
            ifeq 15
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
            ifnull 15
        11: .line 358
            aload 3 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
        12: .line 359
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
        13: .line 360
            aload 1 /* a */
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        14: .line 361
            return
        15: .line 363
      StackMap locals: int
      StackMap stack:
            aload 1 /* a */
            aconst_null
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        16: .line 365
            iload 5 /* d */
            ifeq 24
        17: .line 366
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
        18: .line 368
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
            astore 6 /* ex */
        start local 6 // java.lang.Throwable ex
        19: .line 369
            aload 6 /* ex */
            ifnull 22
        20: .line 370
            aload 1 /* a */
            aload 6 /* ex */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        21: .line 371
            goto 23
        22: .line 372
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 1 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        23: .line 374
      StackMap locals:
      StackMap stack:
            return
        end local 6 // java.lang.Throwable ex
        24: .line 377
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.wip:Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription;
            iload 2 /* missed */
            ineg
            invokevirtual io.reactivex.internal.subscriptions.BasicIntQueueSubscription.addAndGet:(I)I
            istore 2 /* missed */
        25: .line 378
            iload 2 /* missed */
            ifne 5
        end local 5 // boolean d
        26: .line 382
            return
        end local 4 // boolean failFast
        end local 3 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
        end local 2 // int missed
        end local 1 // org.reactivestreams.Subscriber a
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   27     0      this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0   27     1         a  Lorg/reactivestreams/Subscriber<-TT;>;
            1   27     2    missed  I
            2   27     3         q  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            5   27     4  failFast  Z
           10   26     5         d  Z
           19   24     6        ex  Ljava/lang/Throwable;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
      Name  Flags
      a     

  void drain();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.reactivex.processors.UnicastProcessor this
         0: .line 385
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.wip:Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription;
            invokevirtual io.reactivex.internal.subscriptions.BasicIntQueueSubscription.getAndIncrement:()I
            ifeq 2
         1: .line 386
            return
         2: .line 389
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* missed */
        start local 1 // int missed
         3: .line 391
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast org.reactivestreams.Subscriber
            astore 2 /* a */
        start local 2 // org.reactivestreams.Subscriber a
         4: .line 393
      StackMap locals: int org.reactivestreams.Subscriber
      StackMap stack:
            aload 2 /* a */
            ifnull 10
         5: .line 395
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.enableOperatorFusion:Z
            ifeq 8
         6: .line 396
            aload 0 /* this */
            aload 2 /* a */
            invokevirtual io.reactivex.processors.UnicastProcessor.drainFused:(Lorg/reactivestreams/Subscriber;)V
         7: .line 397
            goto 9
         8: .line 398
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* a */
            invokevirtual io.reactivex.processors.UnicastProcessor.drainRegular:(Lorg/reactivestreams/Subscriber;)V
         9: .line 400
      StackMap locals:
      StackMap stack:
            return
        10: .line 403
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.wip:Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription;
            iload 1 /* missed */
            ineg
            invokevirtual io.reactivex.internal.subscriptions.BasicIntQueueSubscription.addAndGet:(I)I
            istore 1 /* missed */
        11: .line 404
            iload 1 /* missed */
            ifne 13
        12: .line 405
            goto 15
        13: .line 407
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast org.reactivestreams.Subscriber
            astore 2 /* a */
        14: .line 392
            goto 4
        15: .line 409
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.reactivestreams.Subscriber a
        end local 1 // int missed
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            3   16     1  missed  I
            4   16     2       a  Lorg/reactivestreams/Subscriber<-TT;>;

  boolean checkTerminated(boolean, boolean, boolean, org.reactivestreams.Subscriber<? super T>, io.reactivex.internal.queue.SpscLinkedArrayQueue<T>);
    descriptor: (ZZZLorg/reactivestreams/Subscriber;Lio/reactivex/internal/queue/SpscLinkedArrayQueue;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=7, args_size=6
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // boolean failFast
        start local 2 // boolean d
        start local 3 // boolean empty
        start local 4 // org.reactivestreams.Subscriber a
        start local 5 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
         0: .line 412
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.cancelled:Z
            ifeq 4
         1: .line 413
            aload 5 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         2: .line 414
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         3: .line 415
            iconst_1
            ireturn
         4: .line 418
      StackMap locals:
      StackMap stack:
            iload 2 /* d */
            ifeq 18
         5: .line 419
            iload 1 /* failFast */
            ifeq 10
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
            ifnull 10
         6: .line 420
            aload 5 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         7: .line 421
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         8: .line 422
            aload 4 /* a */
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         9: .line 423
            iconst_1
            ireturn
        10: .line 425
      StackMap locals:
      StackMap stack:
            iload 3 /* empty */
            ifeq 18
        11: .line 426
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
            astore 6 /* e */
        start local 6 // java.lang.Throwable e
        12: .line 427
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
        13: .line 428
            aload 6 /* e */
            ifnull 16
        14: .line 429
            aload 4 /* a */
            aload 6 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        15: .line 430
            goto 17
        16: .line 431
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 4 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        17: .line 433
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 6 // java.lang.Throwable e
        18: .line 437
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 5 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
        end local 4 // org.reactivestreams.Subscriber a
        end local 3 // boolean empty
        end local 2 // boolean d
        end local 1 // boolean failFast
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0   19     1  failFast  Z
            0   19     2         d  Z
            0   19     3     empty  Z
            0   19     4         a  Lorg/reactivestreams/Subscriber<-TT;>;
            0   19     5         q  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
           12   18     6         e  Ljava/lang/Throwable;
    Signature: (ZZZLorg/reactivestreams/Subscriber<-TT;>;Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;)Z
    MethodParameters:
          Name  Flags
      failFast  
      d         
      empty     
      a         
      q         

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 442
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            ifne 1
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.cancelled:Z
            ifeq 3
         1: .line 443
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         2: .line 444
            goto 4
         3: .line 445
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            ldc 9223372036854775807
            invokeinterface org.reactivestreams.Subscription.request:(J)V
         4: .line 447
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0    5     1     s  Lorg/reactivestreams/Subscription;
    MethodParameters:
      Name  Flags
      s     

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // java.lang.Object t
         0: .line 451
            aload 1 /* t */
            ldc "onNext called with null. Null values are generally not allowed in 2.x operators and sources."
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 453
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            ifne 2
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.cancelled:Z
            ifeq 3
         2: .line 454
      StackMap locals:
      StackMap stack:
            return
         3: .line 457
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            aload 1 /* t */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.offer:(Ljava/lang/Object;)Z
            pop
         4: .line 458
            aload 0 /* this */
            invokevirtual io.reactivex.processors.UnicastProcessor.drain:()V
         5: .line 459
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0    6     1     t  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // java.lang.Throwable t
         0: .line 463
            aload 1 /* t */
            ldc "onError called with null. Null values are generally not allowed in 2.x operators and sources."
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 465
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            ifne 2
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.cancelled:Z
            ifeq 4
         2: .line 466
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         3: .line 467
            return
         4: .line 470
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* t */
            putfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
         5: .line 471
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.processors.UnicastProcessor.done:Z
         6: .line 473
            aload 0 /* this */
            invokevirtual io.reactivex.processors.UnicastProcessor.doTerminate:()V
         7: .line 475
            aload 0 /* this */
            invokevirtual io.reactivex.processors.UnicastProcessor.drain:()V
         8: .line 476
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0    9     1     t  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.processors.UnicastProcessor this
         0: .line 480
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            ifne 1
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.cancelled:Z
            ifeq 2
         1: .line 481
      StackMap locals:
      StackMap stack:
            return
         2: .line 484
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.processors.UnicastProcessor.done:Z
         3: .line 486
            aload 0 /* this */
            invokevirtual io.reactivex.processors.UnicastProcessor.doTerminate:()V
         4: .line 488
            aload 0 /* this */
            invokevirtual io.reactivex.processors.UnicastProcessor.drain:()V
         5: .line 489
            return
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;

  protected void subscribeActual(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.processors.UnicastProcessor this
        start local 1 // org.reactivestreams.Subscriber s
         0: .line 493
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.once:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 8
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.once:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 8
         1: .line 495
            aload 1 /* s */
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.wip:Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription;
            invokeinterface org.reactivestreams.Subscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
         2: .line 496
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* s */
            invokevirtual java.util.concurrent.atomic.AtomicReference.set:(Ljava/lang/Object;)V
         3: .line 497
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.cancelled:Z
            ifeq 6
         4: .line 498
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         5: .line 499
            goto 9
         6: .line 500
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.processors.UnicastProcessor.drain:()V
         7: .line 502
            goto 9
         8: .line 503
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "This processor allows only a single Subscriber"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.EmptySubscription.error:(Ljava/lang/Throwable;Lorg/reactivestreams/Subscriber;)V
         9: .line 505
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.reactivestreams.Subscriber s
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;
            0   10     1     s  Lorg/reactivestreams/Subscriber<-TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
      Name  Flags
      s     

  public boolean hasSubscribers();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.processors.UnicastProcessor this
         0: .line 564
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;

  public java.lang.Throwable getThrowable();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.processors.UnicastProcessor this
         0: .line 570
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            ifeq 2
         1: .line 571
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
            areturn
         2: .line 573
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.Nullable()

  public boolean hasComplete();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.processors.UnicastProcessor this
         0: .line 578
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            ifeq 1
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
            ifnonnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;

  public boolean hasThrowable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.processors.UnicastProcessor this
         0: .line 583
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.done:Z
            ifeq 1
            aload 0 /* this */
            getfield io.reactivex.processors.UnicastProcessor.error:Ljava/lang/Throwable;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.processors.UnicastProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/processors/UnicastProcessor<TT;>;
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/processors/FlowableProcessor<TT;>;
SourceFile: "UnicastProcessor.java"
NestMembers:
  io.reactivex.processors.UnicastProcessor$UnicastQueueSubscription
InnerClasses:
  final UnicastQueueSubscription = io.reactivex.processors.UnicastProcessor$UnicastQueueSubscription of io.reactivex.processors.UnicastProcessor