public final class io.reactivex.internal.observers.ForEachWhileObserver<T> extends java.util.concurrent.atomic.AtomicReference<io.reactivex.disposables.Disposable> implements io.reactivex.Observer<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.observers.ForEachWhileObserver
  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.observers.ForEachWhileObserver 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 39
            aload 0 /* this */
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
         1: .line 41
            aload 0 /* this */
            aload 1 /* onNext */
            putfield io.reactivex.internal.observers.ForEachWhileObserver.onNext:Lio/reactivex/functions/Predicate;
         2: .line 42
            aload 0 /* this */
            aload 2 /* onError */
            putfield io.reactivex.internal.observers.ForEachWhileObserver.onError:Lio/reactivex/functions/Consumer;
         3: .line 43
            aload 0 /* this */
            aload 3 /* onComplete */
            putfield io.reactivex.internal.observers.ForEachWhileObserver.onComplete:Lio/reactivex/functions/Action;
         4: .line 44
            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.observers.ForEachWhileObserver this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lio/reactivex/internal/observers/ForEachWhileObserver<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(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.observers.ForEachWhileObserver this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 48
            aload 0 /* this */
            aload 1 /* d */
            invokestatic io.reactivex.internal.disposables.DisposableHelper.setOnce:(Ljava/util/concurrent/atomic/AtomicReference;Lio/reactivex/disposables/Disposable;)Z
            pop
         1: .line 49
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.internal.observers.ForEachWhileObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/observers/ForEachWhileObserver<TT;>;
            0    2     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=4, args_size=2
        start local 0 // io.reactivex.internal.observers.ForEachWhileObserver this
        start local 1 // java.lang.Object t
         0: .line 53
            aload 0 /* this */
            getfield io.reactivex.internal.observers.ForEachWhileObserver.done:Z
            ifeq 2
         1: .line 54
            return
         2: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.observers.ForEachWhileObserver.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 60
            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 61
            aload 3 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 62
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.ForEachWhileObserver.dispose:()V
         7: .line 63
            aload 0 /* this */
            aload 3 /* ex */
            invokevirtual io.reactivex.internal.observers.ForEachWhileObserver.onError:(Ljava/lang/Throwable;)V
         8: .line 64
            return
        end local 3 // java.lang.Throwable ex
        start local 2 // boolean b
         9: .line 67
      StackMap locals: int
      StackMap stack:
            iload 2 /* b */
            ifne 12
        10: .line 68
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.ForEachWhileObserver.dispose:()V
        11: .line 69
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.ForEachWhileObserver.onComplete:()V
        12: .line 71
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean b
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.observers.ForEachWhileObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lio/reactivex/internal/observers/ForEachWhileObserver<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.observers.ForEachWhileObserver this
        start local 1 // java.lang.Throwable t
         0: .line 75
            aload 0 /* this */
            getfield io.reactivex.internal.observers.ForEachWhileObserver.done:Z
            ifeq 3
         1: .line 76
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         2: .line 77
            return
         3: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.observers.ForEachWhileObserver.done:Z
         4: .line 81
            aload 0 /* this */
            getfield io.reactivex.internal.observers.ForEachWhileObserver.onError:Lio/reactivex/functions/Consumer;
            aload 1 /* t */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         5: .line 82
            goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         7: .line 83
            aload 2 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         8: .line 84
            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 86
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.observers.ForEachWhileObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lio/reactivex/internal/observers/ForEachWhileObserver<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.observers.ForEachWhileObserver this
         0: .line 90
            aload 0 /* this */
            getfield io.reactivex.internal.observers.ForEachWhileObserver.done:Z
            ifeq 2
         1: .line 91
            return
         2: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.observers.ForEachWhileObserver.done:Z
         3: .line 95
            aload 0 /* this */
            getfield io.reactivex.internal.observers.ForEachWhileObserver.onComplete:Lio/reactivex/functions/Action;
            invokeinterface io.reactivex.functions.Action.run:()V
         4: .line 96
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1 /* ex */
        start local 1 // java.lang.Throwable ex
         6: .line 97
            aload 1 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         7: .line 98
            aload 1 /* ex */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable ex
         8: .line 100
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.observers.ForEachWhileObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/reactivex/internal/observers/ForEachWhileObserver<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.observers.ForEachWhileObserver this
         0: .line 104
            aload 0 /* this */
            invokestatic io.reactivex.internal.disposables.DisposableHelper.dispose:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            pop
         1: .line 105
            return
        end local 0 // io.reactivex.internal.observers.ForEachWhileObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/observers/ForEachWhileObserver<TT;>;

  public boolean isDisposed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.observers.ForEachWhileObserver this
         0: .line 109
            aload 0 /* this */
            invokevirtual io.reactivex.internal.observers.ForEachWhileObserver.get:()Ljava/lang/Object;
            checkcast io.reactivex.disposables.Disposable
            invokestatic io.reactivex.internal.disposables.DisposableHelper.isDisposed:(Lio/reactivex/disposables/Disposable;)Z
            ireturn
        end local 0 // io.reactivex.internal.observers.ForEachWhileObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/observers/ForEachWhileObserver<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/util/concurrent/atomic/AtomicReference<Lio/reactivex/disposables/Disposable;>;Lio/reactivex/Observer<TT;>;Lio/reactivex/disposables/Disposable;
SourceFile: "ForEachWhileObserver.java"