public final class io.reactivex.internal.subscribers.ForEachWhileSubscriber<T> extends java.util.concurrent.atomic.AtomicReference<org.reactivestreams.Subscription> implements io.reactivex.FlowableSubscriber<T>, io.reactivex.disposables.Disposable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.subscribers.ForEachWhileSubscriber
  super_class: java.util.concurrent.atomic.AtomicReference
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -4403180040475402120

  final io.reactivex.functions.Predicate<? super T> onNext;
    descriptor: Lio/reactivex/functions/Predicate;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Predicate<-TT;>;

  final io.reactivex.functions.Consumer<? super java.lang.Throwable> onError;
    descriptor: Lio/reactivex/functions/Consumer;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;

  final io.reactivex.functions.Action onComplete;
    descriptor: Lio/reactivex/functions/Action;
    flags: (0x0010) ACC_FINAL

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

  public void <init>(io.reactivex.functions.Predicate<? super T>, io.reactivex.functions.Consumer<? super java.lang.Throwable>, io.reactivex.functions.Action);
    descriptor: (Lio/reactivex/functions/Predicate;Lio/reactivex/functions/Consumer;Lio/reactivex/functions/Action;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
        start local 1 // io.reactivex.functions.Predicate onNext
        start local 2 // io.reactivex.functions.Consumer onError
        start local 3 // io.reactivex.functions.Action onComplete
         0: .line 41
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 1 /* onNext */
            putfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.onNext:Lio/reactivex/functions/Predicate;
         2: .line 44
            aload 0 /* this */
            aload 2 /* onError */
            putfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.onError:Lio/reactivex/functions/Consumer;
         3: .line 45
            aload 0 /* this */
            aload 3 /* onComplete */
            putfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.onComplete:Lio/reactivex/functions/Action;
         4: .line 46
            return
        end local 3 // io.reactivex.functions.Action onComplete
        end local 2 // io.reactivex.functions.Consumer onError
        end local 1 // io.reactivex.functions.Predicate onNext
        end local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lio/reactivex/internal/subscribers/ForEachWhileSubscriber<TT;>;
            0    5     1      onNext  Lio/reactivex/functions/Predicate<-TT;>;
            0    5     2     onError  Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;
            0    5     3  onComplete  Lio/reactivex/functions/Action;
    Signature: (Lio/reactivex/functions/Predicate<-TT;>;Lio/reactivex/functions/Consumer<-Ljava/lang/Throwable;>;Lio/reactivex/functions/Action;)V
    MethodParameters:
            Name  Flags
      onNext      
      onError     
      onComplete  

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 50
            aload 0 /* this */
            aload 1 /* s */
            ldc 9223372036854775807
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.setOnce:(Ljava/util/concurrent/atomic/AtomicReference;Lorg/reactivestreams/Subscription;J)Z
            pop
         1: .line 51
            return
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/ForEachWhileSubscriber<TT;>;
            0    2     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=4, args_size=2
        start local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
        start local 1 // java.lang.Object t
         0: .line 55
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.done:Z
            ifeq 2
         1: .line 56
            return
         2: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.onNext:Lio/reactivex/functions/Predicate;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Predicate.test:(Ljava/lang/Object;)Z
            istore 2 /* b */
        start local 2 // boolean b
         3: .line 62
            goto 9
        end local 2 // boolean b
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 3 /* ex */
        start local 3 // java.lang.Throwable ex
         5: .line 63
            aload 3 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 64
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.ForEachWhileSubscriber.dispose:()V
         7: .line 65
            aload 0 /* this */
            aload 3 /* ex */
            invokevirtual io.reactivex.internal.subscribers.ForEachWhileSubscriber.onError:(Ljava/lang/Throwable;)V
         8: .line 66
            return
        end local 3 // java.lang.Throwable ex
        start local 2 // boolean b
         9: .line 69
      StackMap locals: int
      StackMap stack:
            iload 2 /* b */
            ifne 12
        10: .line 70
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.ForEachWhileSubscriber.dispose:()V
        11: .line 71
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.ForEachWhileSubscriber.onComplete:()V
        12: .line 73
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean b
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lio/reactivex/internal/subscribers/ForEachWhileSubscriber<TT;>;
            0   13     1     t  TT;
            3    4     2     b  Z
            9   13     2     b  Z
            5    9     3    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 77
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.done:Z
            ifeq 3
         1: .line 78
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         2: .line 79
            return
         3: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.done:Z
         4: .line 83
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.onError:Lio/reactivex/functions/Consumer;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         5: .line 84
            goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         7: .line 85
            aload 2 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         8: .line 86
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* t */
            aastore
            dup
            iconst_1
            aload 2 /* ex */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable ex
         9: .line 88
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/reactivex/internal/subscribers/ForEachWhileSubscriber<TT;>;
            0   10     1     t  Ljava/lang/Throwable;
            7    9     2    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           4     5       6  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
         0: .line 92
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.done:Z
            ifeq 2
         1: .line 93
            return
         2: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.done:Z
         3: .line 97
            aload 0 /* this */
            getfield io.reactivex.internal.subscribers.ForEachWhileSubscriber.onComplete:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
         4: .line 98
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1 /* ex */
        start local 1 // java.lang.Throwable ex
         6: .line 99
            aload 1 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         7: .line 100
            aload 1 /* ex */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable ex
         8: .line 102
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/reactivex/internal/subscribers/ForEachWhileSubscriber<TT;>;
            6    8     1    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.Throwable

  public void dispose();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
         0: .line 106
            aload 0 /* this */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.cancel:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            pop
         1: .line 107
            return
        end local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/ForEachWhileSubscriber<TT;>;

  public boolean isDisposed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
         0: .line 111
            aload 0 /* this */
            invokevirtual io.reactivex.internal.subscribers.ForEachWhileSubscriber.get:()Ljava/lang/Object;
            getstatic io.reactivex.internal.subscriptions.SubscriptionHelper.CANCELLED:Lio/reactivex/internal/subscriptions/SubscriptionHelper;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.internal.subscribers.ForEachWhileSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/subscribers/ForEachWhileSubscriber<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicReference<Lorg/reactivestreams/Subscription;>;Lio/reactivex/FlowableSubscriber<TT;>;Lio/reactivex/disposables/Disposable;
SourceFile: "ForEachWhileSubscriber.java"