public final class io.reactivex.internal.operators.completable.CompletableAmb extends io.reactivex.Completable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.completable.CompletableAmb
  super_class: io.reactivex.Completable
{
  private final io.reactivex.CompletableSource[] sources;
    descriptor: [Lio/reactivex/CompletableSource;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Iterable<? extends io.reactivex.CompletableSource> sourcesIterable;
    descriptor: Ljava/lang/Iterable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Iterable<+Lio/reactivex/CompletableSource;>;

  public void <init>(io.reactivex.CompletableSource[], java.lang.Iterable<? extends io.reactivex.CompletableSource>);
    descriptor: ([Lio/reactivex/CompletableSource;Ljava/lang/Iterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.completable.CompletableAmb this
        start local 1 // io.reactivex.CompletableSource[] sources
        start local 2 // java.lang.Iterable sourcesIterable
         0: .line 28
            aload 0 /* this */
            invokespecial io.reactivex.Completable.<init>:()V
         1: .line 29
            aload 0 /* this */
            aload 1 /* sources */
            putfield io.reactivex.internal.operators.completable.CompletableAmb.sources:[Lio/reactivex/CompletableSource;
         2: .line 30
            aload 0 /* this */
            aload 2 /* sourcesIterable */
            putfield io.reactivex.internal.operators.completable.CompletableAmb.sourcesIterable:Ljava/lang/Iterable;
         3: .line 31
            return
        end local 2 // java.lang.Iterable sourcesIterable
        end local 1 // io.reactivex.CompletableSource[] sources
        end local 0 // io.reactivex.internal.operators.completable.CompletableAmb this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lio/reactivex/internal/operators/completable/CompletableAmb;
            0    4     1          sources  [Lio/reactivex/CompletableSource;
            0    4     2  sourcesIterable  Ljava/lang/Iterable<+Lio/reactivex/CompletableSource;>;
    Signature: ([Lio/reactivex/CompletableSource;Ljava/lang/Iterable<+Lio/reactivex/CompletableSource;>;)V
    MethodParameters:
                 Name  Flags
      sources          
      sourcesIterable  

  public void subscribeActual(io.reactivex.CompletableObserver);
    descriptor: (Lio/reactivex/CompletableObserver;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=2
        start local 0 // io.reactivex.internal.operators.completable.CompletableAmb this
        start local 1 // io.reactivex.CompletableObserver observer
         0: .line 35
            aload 0 /* this */
            getfield io.reactivex.internal.operators.completable.CompletableAmb.sources:[Lio/reactivex/CompletableSource;
            astore 2 /* sources */
        start local 2 // io.reactivex.CompletableSource[] sources
         1: .line 36
            iconst_0
            istore 3 /* count */
        start local 3 // int count
         2: .line 37
            aload 2 /* sources */
            ifnonnull 20
         3: .line 38
            bipush 8
            anewarray io.reactivex.CompletableSource
            astore 2 /* sources */
         4: .line 40
            aload 0 /* this */
            getfield io.reactivex.internal.operators.completable.CompletableAmb.sourcesIterable:Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 5
            goto 14
      StackMap locals: io.reactivex.internal.operators.completable.CompletableAmb io.reactivex.CompletableObserver io.reactivex.CompletableSource[] int top java.util.Iterator
      StackMap stack:
         5: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.reactivex.CompletableSource
            astore 4 /* element */
        start local 4 // io.reactivex.CompletableSource element
         6: .line 41
            aload 4 /* element */
            ifnonnull 9
         7: .line 42
            new java.lang.NullPointerException
            dup
            ldc "One of the sources is null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            aload 1 /* observer */
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.error:(Ljava/lang/Throwable;Lio/reactivex/CompletableObserver;)V
         8: .line 43
            return
         9: .line 45
      StackMap locals: io.reactivex.internal.operators.completable.CompletableAmb io.reactivex.CompletableObserver io.reactivex.CompletableSource[] int io.reactivex.CompletableSource java.util.Iterator
      StackMap stack:
            iload 3 /* count */
            aload 2 /* sources */
            arraylength
            if_icmpne 13
        10: .line 46
            iload 3 /* count */
            iload 3 /* count */
            iconst_2
            ishr
            iadd
            anewarray io.reactivex.CompletableSource
            astore 6 /* b */
        start local 6 // io.reactivex.CompletableSource[] b
        11: .line 47
            aload 2 /* sources */
            iconst_0
            aload 6 /* b */
            iconst_0
            iload 3 /* count */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        12: .line 48
            aload 6 /* b */
            astore 2 /* sources */
        end local 6 // io.reactivex.CompletableSource[] b
        13: .line 50
      StackMap locals:
      StackMap stack:
            aload 2 /* sources */
            iload 3 /* count */
            iinc 3 /* count */ 1
            aload 4 /* element */
            aastore
        end local 4 // io.reactivex.CompletableSource element
        14: .line 40
      StackMap locals: io.reactivex.internal.operators.completable.CompletableAmb io.reactivex.CompletableObserver io.reactivex.CompletableSource[] int top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        15: .line 52
            goto 21
      StackMap locals: io.reactivex.internal.operators.completable.CompletableAmb io.reactivex.CompletableObserver io.reactivex.CompletableSource[] int
      StackMap stack: java.lang.Throwable
        16: astore 4 /* e */
        start local 4 // java.lang.Throwable e
        17: .line 53
            aload 4 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        18: .line 54
            aload 4 /* e */
            aload 1 /* observer */
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.error:(Ljava/lang/Throwable;Lio/reactivex/CompletableObserver;)V
        19: .line 55
            return
        end local 4 // java.lang.Throwable e
        20: .line 58
      StackMap locals:
      StackMap stack:
            aload 2 /* sources */
            arraylength
            istore 3 /* count */
        21: .line 61
      StackMap locals:
      StackMap stack:
            new io.reactivex.disposables.CompositeDisposable
            dup
            invokespecial io.reactivex.disposables.CompositeDisposable.<init>:()V
            astore 4 /* set */
        start local 4 // io.reactivex.disposables.CompositeDisposable set
        22: .line 62
            aload 1 /* observer */
            aload 4 /* set */
            invokeinterface io.reactivex.CompletableObserver.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
        23: .line 64
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            astore 5 /* once */
        start local 5 // java.util.concurrent.atomic.AtomicBoolean once
        24: .line 66
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        25: goto 39
        26: .line 67
      StackMap locals: io.reactivex.disposables.CompositeDisposable java.util.concurrent.atomic.AtomicBoolean int
      StackMap stack:
            aload 2 /* sources */
            iload 6 /* i */
            aaload
            astore 7 /* c */
        start local 7 // io.reactivex.CompletableSource c
        27: .line 68
            aload 4 /* set */
            invokevirtual io.reactivex.disposables.CompositeDisposable.isDisposed:()Z
            ifeq 29
        28: .line 69
            return
        29: .line 71
      StackMap locals: io.reactivex.CompletableSource
      StackMap stack:
            aload 7 /* c */
            ifnonnull 37
        30: .line 72
            new java.lang.NullPointerException
            dup
            ldc "One of the sources is null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            astore 8 /* npe */
        start local 8 // java.lang.NullPointerException npe
        31: .line 73
            aload 5 /* once */
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 35
        32: .line 74
            aload 4 /* set */
            invokevirtual io.reactivex.disposables.CompositeDisposable.dispose:()V
        33: .line 75
            aload 1 /* observer */
            aload 8 /* npe */
            invokeinterface io.reactivex.CompletableObserver.onError:(Ljava/lang/Throwable;)V
        34: .line 76
            goto 36
        35: .line 77
      StackMap locals: java.lang.NullPointerException
      StackMap stack:
            aload 8 /* npe */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        36: .line 79
      StackMap locals:
      StackMap stack:
            return
        end local 8 // java.lang.NullPointerException npe
        37: .line 83
      StackMap locals:
      StackMap stack:
            aload 7 /* c */
            new io.reactivex.internal.operators.completable.CompletableAmb$Amb
            dup
            aload 5 /* once */
            aload 4 /* set */
            aload 1 /* observer */
            invokespecial io.reactivex.internal.operators.completable.CompletableAmb$Amb.<init>:(Ljava/util/concurrent/atomic/AtomicBoolean;Lio/reactivex/disposables/CompositeDisposable;Lio/reactivex/CompletableObserver;)V
            invokeinterface io.reactivex.CompletableSource.subscribe:(Lio/reactivex/CompletableObserver;)V
        end local 7 // io.reactivex.CompletableSource c
        38: .line 66
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        39: iload 6 /* i */
            iload 3 /* count */
            if_icmplt 26
        end local 6 // int i
        40: .line 86
            iload 3 /* count */
            ifne 42
        41: .line 87
            aload 1 /* observer */
            invokeinterface io.reactivex.CompletableObserver.onComplete:()V
        42: .line 89
      StackMap locals:
      StackMap stack:
            return
        end local 5 // java.util.concurrent.atomic.AtomicBoolean once
        end local 4 // io.reactivex.disposables.CompositeDisposable set
        end local 3 // int count
        end local 2 // io.reactivex.CompletableSource[] sources
        end local 1 // io.reactivex.CompletableObserver observer
        end local 0 // io.reactivex.internal.operators.completable.CompletableAmb this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   43     0      this  Lio/reactivex/internal/operators/completable/CompletableAmb;
            0   43     1  observer  Lio/reactivex/CompletableObserver;
            1   43     2   sources  [Lio/reactivex/CompletableSource;
            2   43     3     count  I
            6   14     4   element  Lio/reactivex/CompletableSource;
           11   13     6         b  [Lio/reactivex/CompletableSource;
           17   20     4         e  Ljava/lang/Throwable;
           22   43     4       set  Lio/reactivex/disposables/CompositeDisposable;
           24   43     5      once  Ljava/util/concurrent/atomic/AtomicBoolean;
           25   40     6         i  I
           27   38     7         c  Lio/reactivex/CompletableSource;
           31   37     8       npe  Ljava/lang/NullPointerException;
      Exception table:
        from    to  target  type
           4     8      16  Class java.lang.Throwable
           9    15      16  Class java.lang.Throwable
    MethodParameters:
          Name  Flags
      observer  final
}
SourceFile: "CompletableAmb.java"
NestMembers:
  io.reactivex.internal.operators.completable.CompletableAmb$Amb
InnerClasses:
  final Amb = io.reactivex.internal.operators.completable.CompletableAmb$Amb of io.reactivex.internal.operators.completable.CompletableAmb