public final class io.reactivex.subjects.UnicastSubject<T> extends io.reactivex.subjects.Subject<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.subjects.UnicastSubject
  super_class: io.reactivex.subjects.Subject
{
  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<io.reactivex.Observer<? super T>> downstream;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lio/reactivex/Observer<-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 disposed;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

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

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

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

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

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

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

  public static <T> io.reactivex.subjects.UnicastSubject<T> create(int);
    descriptor: (I)Lio/reactivex/subjects/UnicastSubject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // int capacityHint
         0: .line 196
            new io.reactivex.subjects.UnicastSubject
            dup
            iload 0 /* capacityHint */
            iconst_1
            invokespecial io.reactivex.subjects.UnicastSubject.<init>:(IZ)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/subjects/UnicastSubject<TT;>;
    RuntimeVisibleAnnotations: 
      io.reactivex.annotations.CheckReturnValue()
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    MethodParameters:
              Name  Flags
      capacityHint  

  public static <T> io.reactivex.subjects.UnicastSubject<T> create(int, java.lang.Runnable);
    descriptor: (ILjava/lang/Runnable;)Lio/reactivex/subjects/UnicastSubject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // int capacityHint
        start local 1 // java.lang.Runnable onTerminate
         0: .line 214
            new io.reactivex.subjects.UnicastSubject
            dup
            iload 0 /* capacityHint */
            aload 1 /* onTerminate */
            iconst_1
            invokespecial io.reactivex.subjects.UnicastSubject.<init>:(ILjava/lang/Runnable;Z)V
            areturn
        end local 1 // java.lang.Runnable onTerminate
        end local 0 // int capacityHint
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  capacityHint  I
            0    1     1   onTerminate  Ljava/lang/Runnable;
    Signature: <T:Ljava/lang/Object;>(ILjava/lang/Runnable;)Lio/reactivex/subjects/UnicastSubject<TT;>;
    RuntimeVisibleAnnotations: 
      io.reactivex.annotations.CheckReturnValue()
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    MethodParameters:
              Name  Flags
      capacityHint  
      onTerminate   

  public static <T> io.reactivex.subjects.UnicastSubject<T> create(int, java.lang.Runnable, boolean);
    descriptor: (ILjava/lang/Runnable;Z)Lio/reactivex/subjects/UnicastSubject;
    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 onTerminate
        start local 2 // boolean delayError
         0: .line 234
            new io.reactivex.subjects.UnicastSubject
            dup
            iload 0 /* capacityHint */
            aload 1 /* onTerminate */
            iload 2 /* delayError */
            invokespecial io.reactivex.subjects.UnicastSubject.<init>:(ILjava/lang/Runnable;Z)V
            areturn
        end local 2 // boolean delayError
        end local 1 // java.lang.Runnable onTerminate
        end local 0 // int capacityHint
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  capacityHint  I
            0    1     1   onTerminate  Ljava/lang/Runnable;
            0    1     2    delayError  Z
    Signature: <T:Ljava/lang/Object;>(ILjava/lang/Runnable;Z)Lio/reactivex/subjects/UnicastSubject<TT;>;
    RuntimeVisibleAnnotations: 
      io.reactivex.annotations.CheckReturnValue()
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    MethodParameters:
              Name  Flags
      capacityHint  
      onTerminate   
      delayError    

  public static <T> io.reactivex.subjects.UnicastSubject<T> create(boolean);
    descriptor: (Z)Lio/reactivex/subjects/UnicastSubject;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // boolean delayError
         0: .line 251
            new io.reactivex.subjects.UnicastSubject
            dup
            invokestatic io.reactivex.subjects.UnicastSubject.bufferSize:()I
            iload 0 /* delayError */
            invokespecial io.reactivex.subjects.UnicastSubject.<init>:(IZ)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/subjects/UnicastSubject<TT;>;
    RuntimeVisibleAnnotations: 
      io.reactivex.annotations.CheckReturnValue()
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.NonNull()
    MethodParameters:
            Name  Flags
      delayError  

  void <init>(int, boolean);
    descriptor: (IZ)V
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // io.reactivex.subjects.UnicastSubject this
        start local 1 // int capacityHint
        start local 2 // boolean delayError
         0: .line 261
            aload 0 /* this */
            invokespecial io.reactivex.subjects.Subject.<init>:()V
         1: .line 262
            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.subjects.UnicastSubject.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
         2: .line 263
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.subjects.UnicastSubject.onTerminate:Ljava/util/concurrent/atomic/AtomicReference;
         3: .line 264
            aload 0 /* this */
            iload 2 /* delayError */
            putfield io.reactivex.subjects.UnicastSubject.delayError:Z
         4: .line 265
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
         5: .line 266
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield io.reactivex.subjects.UnicastSubject.once:Ljava/util/concurrent/atomic/AtomicBoolean;
         6: .line 267
            aload 0 /* this */
            new io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable
            dup
            aload 0 /* this */
            invokespecial io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable.<init>:(Lio/reactivex/subjects/UnicastSubject;)V
            putfield io.reactivex.subjects.UnicastSubject.wip:Lio/reactivex/internal/observers/BasicIntQueueDisposable;
         7: .line 268
            return
        end local 2 // boolean delayError
        end local 1 // int capacityHint
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0          this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            0    8     1  capacityHint  I
            0    8     2    delayError  Z
    MethodParameters:
              Name  Flags
      capacityHint  
      delayError    

  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.subjects.UnicastSubject this
        start local 1 // int capacityHint
        start local 2 // java.lang.Runnable onTerminate
         0: .line 279
            aload 0 /* this */
            iload 1 /* capacityHint */
            aload 2 /* onTerminate */
            iconst_1
            invokespecial io.reactivex.subjects.UnicastSubject.<init>:(ILjava/lang/Runnable;Z)V
         1: .line 280
            return
        end local 2 // java.lang.Runnable onTerminate
        end local 1 // int capacityHint
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/reactivex/subjects/UnicastSubject<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.subjects.UnicastSubject this
        start local 1 // int capacityHint
        start local 2 // java.lang.Runnable onTerminate
        start local 3 // boolean delayError
         0: .line 291
            aload 0 /* this */
            invokespecial io.reactivex.subjects.Subject.<init>:()V
         1: .line 292
            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.subjects.UnicastSubject.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
         2: .line 293
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            aload 2 /* onTerminate */
            ldc "onTerminate"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.lang.Runnable
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:(Ljava/lang/Object;)V
            putfield io.reactivex.subjects.UnicastSubject.onTerminate:Ljava/util/concurrent/atomic/AtomicReference;
         3: .line 294
            aload 0 /* this */
            iload 3 /* delayError */
            putfield io.reactivex.subjects.UnicastSubject.delayError:Z
         4: .line 295
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
         5: .line 296
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield io.reactivex.subjects.UnicastSubject.once:Ljava/util/concurrent/atomic/AtomicBoolean;
         6: .line 297
            aload 0 /* this */
            new io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable
            dup
            aload 0 /* this */
            invokespecial io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable.<init>:(Lio/reactivex/subjects/UnicastSubject;)V
            putfield io.reactivex.subjects.UnicastSubject.wip:Lio/reactivex/internal/observers/BasicIntQueueDisposable;
         7: .line 298
            return
        end local 3 // boolean delayError
        end local 2 // java.lang.Runnable onTerminate
        end local 1 // int capacityHint
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0          this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            0    8     1  capacityHint  I
            0    8     2   onTerminate  Ljava/lang/Runnable;
            0    8     3    delayError  Z
    MethodParameters:
              Name  Flags
      capacityHint  
      onTerminate   
      delayError    

  protected void subscribeActual(io.reactivex.Observer<? super T>);
    descriptor: (Lio/reactivex/Observer;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.subjects.UnicastSubject this
        start local 1 // io.reactivex.Observer observer
         0: .line 302
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.once:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 8
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.once:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 8
         1: .line 303
            aload 1 /* observer */
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.wip:Lio/reactivex/internal/observers/BasicIntQueueDisposable;
            invokeinterface io.reactivex.Observer.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
         2: .line 304
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* observer */
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         3: .line 305
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.disposed:Z
            ifeq 6
         4: .line 306
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         5: .line 307
            return
         6: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.subjects.UnicastSubject.drain:()V
         7: .line 310
            goto 9
         8: .line 311
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Only a single observer allowed."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            aload 1 /* observer */
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.error:(Ljava/lang/Throwable;Lio/reactivex/Observer;)V
         9: .line 313
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.reactivex.Observer observer
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            0   10     1  observer  Lio/reactivex/Observer<-TT;>;
    Signature: (Lio/reactivex/Observer<-TT;>;)V
    MethodParameters:
          Name  Flags
      observer  

  void doTerminate();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.reactivex.subjects.UnicastSubject this
         0: .line 316
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.onTerminate:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.lang.Runnable
            astore 1 /* r */
        start local 1 // java.lang.Runnable r
         1: .line 317
            aload 1 /* r */
            ifnull 3
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.onTerminate:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* r */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 3
         2: .line 318
            aload 1 /* r */
            invokeinterface java.lang.Runnable.run:()V
         3: .line 320
      StackMap locals: java.lang.Runnable
      StackMap stack:
            return
        end local 1 // java.lang.Runnable r
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            1    4     1     r  Ljava/lang/Runnable;

  public void onSubscribe(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.reactivex.subjects.UnicastSubject this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 324
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.done:Z
            ifne 1
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.disposed:Z
            ifeq 2
         1: .line 325
      StackMap locals:
      StackMap stack:
            aload 1 /* d */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         2: .line 327
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            0    3     1     d  Lio/reactivex/disposables/Disposable;
    MethodParameters:
      Name  Flags
      d     

  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.subjects.UnicastSubject this
        start local 1 // java.lang.Object t
         0: .line 331
            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 332
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.done:Z
            ifne 2
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.disposed:Z
            ifeq 3
         2: .line 333
      StackMap locals:
      StackMap stack:
            return
         3: .line 335
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            aload 1 /* t */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.offer:(Ljava/lang/Object;)Z
            pop
         4: .line 336
            aload 0 /* this */
            invokevirtual io.reactivex.subjects.UnicastSubject.drain:()V
         5: .line 337
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/subjects/UnicastSubject<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.subjects.UnicastSubject this
        start local 1 // java.lang.Throwable t
         0: .line 341
            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 342
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.done:Z
            ifne 2
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.disposed:Z
            ifeq 4
         2: .line 343
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         3: .line 344
            return
         4: .line 346
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* t */
            putfield io.reactivex.subjects.UnicastSubject.error:Ljava/lang/Throwable;
         5: .line 347
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.subjects.UnicastSubject.done:Z
         6: .line 349
            aload 0 /* this */
            invokevirtual io.reactivex.subjects.UnicastSubject.doTerminate:()V
         7: .line 351
            aload 0 /* this */
            invokevirtual io.reactivex.subjects.UnicastSubject.drain:()V
         8: .line 352
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/reactivex/subjects/UnicastSubject<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.subjects.UnicastSubject this
         0: .line 356
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.done:Z
            ifne 1
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.disposed:Z
            ifeq 2
         1: .line 357
      StackMap locals:
      StackMap stack:
            return
         2: .line 359
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.subjects.UnicastSubject.done:Z
         3: .line 361
            aload 0 /* this */
            invokevirtual io.reactivex.subjects.UnicastSubject.doTerminate:()V
         4: .line 363
            aload 0 /* this */
            invokevirtual io.reactivex.subjects.UnicastSubject.drain:()V
         5: .line 364
            return
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/subjects/UnicastSubject<TT;>;

  void drainNormal(io.reactivex.Observer<? super T>);
    descriptor: (Lio/reactivex/Observer;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // io.reactivex.subjects.UnicastSubject this
        start local 1 // io.reactivex.Observer a
         0: .line 367
            iconst_1
            istore 2 /* missed */
        start local 2 // int missed
         1: .line 368
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            astore 3 /* q */
        start local 3 // io.reactivex.internal.fuseable.SimpleQueue q
         2: .line 369
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.delayError:Z
            ifeq 3
            iconst_0
            goto 4
      StackMap locals: int io.reactivex.internal.fuseable.SimpleQueue
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: istore 4 /* failFast */
        start local 4 // boolean failFast
         5: .line 370
            iconst_1
            istore 5 /* canBeError */
        start local 5 // boolean canBeError
         6: .line 374
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.disposed:Z
            ifeq 10
         7: .line 375
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         8: .line 376
            aload 3 /* q */
            invokeinterface io.reactivex.internal.fuseable.SimpleQueue.clear:()V
         9: .line 377
            return
        10: .line 380
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.done:Z
            istore 6 /* d */
        start local 6 // boolean d
        11: .line 381
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.poll:()Ljava/lang/Object;
            astore 7 /* v */
        start local 7 // java.lang.Object v
        12: .line 382
            aload 7 /* v */
            ifnonnull 13
            iconst_1
            goto 14
      StackMap locals: int java.lang.Object
      StackMap stack:
        13: iconst_0
      StackMap locals:
      StackMap stack: int
        14: istore 8 /* empty */
        start local 8 // boolean empty
        15: .line 384
            iload 6 /* d */
            ifeq 23
        16: .line 385
            iload 4 /* failFast */
            ifeq 20
            iload 5 /* canBeError */
            ifeq 20
        17: .line 386
            aload 0 /* this */
            aload 3 /* q */
            aload 1 /* a */
            invokevirtual io.reactivex.subjects.UnicastSubject.failedFast:(Lio/reactivex/internal/fuseable/SimpleQueue;Lio/reactivex/Observer;)Z
            ifeq 19
        18: .line 387
            return
        19: .line 389
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 5 /* canBeError */
        20: .line 393
      StackMap locals:
      StackMap stack:
            iload 8 /* empty */
            ifeq 23
        21: .line 394
            aload 0 /* this */
            aload 1 /* a */
            invokevirtual io.reactivex.subjects.UnicastSubject.errorOrComplete:(Lio/reactivex/Observer;)V
        22: .line 395
            return
        23: .line 399
      StackMap locals:
      StackMap stack:
            iload 8 /* empty */
            ifeq 25
        24: .line 400
            goto 27
        25: .line 403
      StackMap locals:
      StackMap stack:
            aload 1 /* a */
            aload 7 /* v */
            invokeinterface io.reactivex.Observer.onNext:(Ljava/lang/Object;)V
        end local 8 // boolean empty
        end local 7 // java.lang.Object v
        end local 6 // boolean d
        26: .line 372
            goto 6
        27: .line 406
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.wip:Lio/reactivex/internal/observers/BasicIntQueueDisposable;
            iload 2 /* missed */
            ineg
            invokevirtual io.reactivex.internal.observers.BasicIntQueueDisposable.addAndGet:(I)I
            istore 2 /* missed */
        28: .line 407
            iload 2 /* missed */
            ifne 6
        29: .line 411
            return
        end local 5 // boolean canBeError
        end local 4 // boolean failFast
        end local 3 // io.reactivex.internal.fuseable.SimpleQueue q
        end local 2 // int missed
        end local 1 // io.reactivex.Observer a
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   30     0        this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            0   30     1           a  Lio/reactivex/Observer<-TT;>;
            1   30     2      missed  I
            2   30     3           q  Lio/reactivex/internal/fuseable/SimpleQueue<TT;>;
            5   30     4    failFast  Z
            6   30     5  canBeError  Z
           11   26     6           d  Z
           12   26     7           v  TT;
           15   26     8       empty  Z
    Signature: (Lio/reactivex/Observer<-TT;>;)V
    MethodParameters:
      Name  Flags
      a     

  void drainFused(io.reactivex.Observer<? super T>);
    descriptor: (Lio/reactivex/Observer;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // io.reactivex.subjects.UnicastSubject this
        start local 1 // io.reactivex.Observer a
         0: .line 414
            iconst_1
            istore 2 /* missed */
        start local 2 // int missed
         1: .line 416
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            astore 3 /* q */
        start local 3 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
         2: .line 417
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.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 421
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.disposed:Z
            ifeq 9
         6: .line 422
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         7: .line 423
            aload 3 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         8: .line 424
            return
         9: .line 426
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.done:Z
            istore 5 /* d */
        start local 5 // boolean d
        10: .line 428
            iload 4 /* failFast */
            ifeq 13
            iload 5 /* d */
            ifeq 13
        11: .line 429
            aload 0 /* this */
            aload 3 /* q */
            aload 1 /* a */
            invokevirtual io.reactivex.subjects.UnicastSubject.failedFast:(Lio/reactivex/internal/fuseable/SimpleQueue;Lio/reactivex/Observer;)Z
            ifeq 13
        12: .line 430
            return
        13: .line 434
      StackMap locals: int
      StackMap stack:
            aload 1 /* a */
            aconst_null
            invokeinterface io.reactivex.Observer.onNext:(Ljava/lang/Object;)V
        14: .line 436
            iload 5 /* d */
            ifeq 17
        15: .line 437
            aload 0 /* this */
            aload 1 /* a */
            invokevirtual io.reactivex.subjects.UnicastSubject.errorOrComplete:(Lio/reactivex/Observer;)V
        16: .line 438
            return
        17: .line 441
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.wip:Lio/reactivex/internal/observers/BasicIntQueueDisposable;
            iload 2 /* missed */
            ineg
            invokevirtual io.reactivex.internal.observers.BasicIntQueueDisposable.addAndGet:(I)I
            istore 2 /* missed */
        18: .line 442
            iload 2 /* missed */
            ifne 5
        end local 5 // boolean d
        19: .line 446
            return
        end local 4 // boolean failFast
        end local 3 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
        end local 2 // int missed
        end local 1 // io.reactivex.Observer a
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   20     0      this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            0   20     1         a  Lio/reactivex/Observer<-TT;>;
            1   20     2    missed  I
            2   20     3         q  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<TT;>;
            5   20     4  failFast  Z
           10   19     5         d  Z
    Signature: (Lio/reactivex/Observer<-TT;>;)V
    MethodParameters:
      Name  Flags
      a     

  void errorOrComplete(io.reactivex.Observer<? super T>);
    descriptor: (Lio/reactivex/Observer;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.reactivex.subjects.UnicastSubject this
        start local 1 // io.reactivex.Observer a
         0: .line 449
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         1: .line 450
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.error:Ljava/lang/Throwable;
            astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         2: .line 451
            aload 2 /* ex */
            ifnull 5
         3: .line 452
            aload 1 /* a */
            aload 2 /* ex */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
         4: .line 453
            goto 6
         5: .line 454
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 1 /* a */
            invokeinterface io.reactivex.Observer.onComplete:()V
         6: .line 456
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Throwable ex
        end local 1 // io.reactivex.Observer a
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            0    7     1     a  Lio/reactivex/Observer<-TT;>;
            2    7     2    ex  Ljava/lang/Throwable;
    Signature: (Lio/reactivex/Observer<-TT;>;)V
    MethodParameters:
      Name  Flags
      a     

  boolean failedFast(io.reactivex.internal.fuseable.SimpleQueue<T>, io.reactivex.Observer<? super T>);
    descriptor: (Lio/reactivex/internal/fuseable/SimpleQueue;Lio/reactivex/Observer;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.reactivex.subjects.UnicastSubject this
        start local 1 // io.reactivex.internal.fuseable.SimpleQueue q
        start local 2 // io.reactivex.Observer a
         0: .line 459
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.error:Ljava/lang/Throwable;
            astore 3 /* ex */
        start local 3 // java.lang.Throwable ex
         1: .line 460
            aload 3 /* ex */
            ifnull 6
         2: .line 461
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.lazySet:(Ljava/lang/Object;)V
         3: .line 462
            aload 1 /* q */
            invokeinterface io.reactivex.internal.fuseable.SimpleQueue.clear:()V
         4: .line 463
            aload 2 /* a */
            aload 3 /* ex */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
         5: .line 464
            iconst_1
            ireturn
         6: .line 466
      StackMap locals: java.lang.Throwable
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // java.lang.Throwable ex
        end local 2 // io.reactivex.Observer a
        end local 1 // io.reactivex.internal.fuseable.SimpleQueue q
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            0    7     1     q  Lio/reactivex/internal/fuseable/SimpleQueue<TT;>;
            0    7     2     a  Lio/reactivex/Observer<-TT;>;
            1    7     3    ex  Ljava/lang/Throwable;
    Signature: (Lio/reactivex/internal/fuseable/SimpleQueue<TT;>;Lio/reactivex/Observer<-TT;>;)Z
    MethodParameters:
      Name  Flags
      q     final
      a     

  void drain();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.reactivex.subjects.UnicastSubject this
         0: .line 471
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.wip:Lio/reactivex/internal/observers/BasicIntQueueDisposable;
            invokevirtual io.reactivex.internal.observers.BasicIntQueueDisposable.getAndIncrement:()I
            ifeq 2
         1: .line 472
            return
         2: .line 475
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast io.reactivex.Observer
            astore 1 /* a */
        start local 1 // io.reactivex.Observer a
         3: .line 476
            iconst_1
            istore 2 /* missed */
        start local 2 // int missed
         4: .line 480
      StackMap locals: io.reactivex.Observer int
      StackMap stack:
            aload 1 /* a */
            ifnull 10
         5: .line 481
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.enableOperatorFusion:Z
            ifeq 8
         6: .line 482
            aload 0 /* this */
            aload 1 /* a */
            invokevirtual io.reactivex.subjects.UnicastSubject.drainFused:(Lio/reactivex/Observer;)V
         7: .line 483
            goto 9
         8: .line 484
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* a */
            invokevirtual io.reactivex.subjects.UnicastSubject.drainNormal:(Lio/reactivex/Observer;)V
         9: .line 486
      StackMap locals:
      StackMap stack:
            return
        10: .line 489
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.wip:Lio/reactivex/internal/observers/BasicIntQueueDisposable;
            iload 2 /* missed */
            ineg
            invokevirtual io.reactivex.internal.observers.BasicIntQueueDisposable.addAndGet:(I)I
            istore 2 /* missed */
        11: .line 490
            iload 2 /* missed */
            ifne 13
        12: .line 491
            goto 15
        13: .line 494
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.downstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast io.reactivex.Observer
            astore 1 /* a */
        14: .line 478
            goto 4
        15: .line 496
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int missed
        end local 1 // io.reactivex.Observer a
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lio/reactivex/subjects/UnicastSubject<TT;>;
            3   16     1       a  Lio/reactivex/Observer<-TT;>;
            4   16     2  missed  I

  public boolean hasObservers();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.subjects.UnicastSubject this
         0: .line 500
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.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.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/subjects/UnicastSubject<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.subjects.UnicastSubject this
         0: .line 506
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.done:Z
            ifeq 2
         1: .line 507
            aload 0 /* this */
            getfield io.reactivex.subjects.UnicastSubject.error:Ljava/lang/Throwable;
            areturn
         2: .line 509
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // io.reactivex.subjects.UnicastSubject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/subjects/UnicastSubject<TT;>;
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.Nullable()

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

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