final class io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber<T, K> extends io.reactivex.internal.subscribers.BasicFuseableSubscriber<T, T>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber
  super_class: io.reactivex.internal.subscribers.BasicFuseableSubscriber
{
  final java.util.Collection<? super K> collection;
    descriptor: Ljava/util/Collection;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Collection<-TK;>;

  final io.reactivex.functions.Function<? super T, K> keySelector;
    descriptor: Lio/reactivex/functions/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Function<-TT;TK;>;

  void <init>(org.reactivestreams.Subscriber<? super T>, io.reactivex.functions.Function<? super T, K>, java.util.Collection<? super K>);
    descriptor: (Lorg/reactivestreams/Subscriber;Lio/reactivex/functions/Function;Ljava/util/Collection;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // io.reactivex.functions.Function keySelector
        start local 3 // java.util.Collection collection
         0: .line 65
            aload 0 /* this */
            aload 1 /* actual */
            invokespecial io.reactivex.internal.subscribers.BasicFuseableSubscriber.<init>:(Lorg/reactivestreams/Subscriber;)V
         1: .line 66
            aload 0 /* this */
            aload 2 /* keySelector */
            putfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.keySelector:Lio/reactivex/functions/Function;
         2: .line 67
            aload 0 /* this */
            aload 3 /* collection */
            putfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.collection:Ljava/util/Collection;
         3: .line 68
            return
        end local 3 // java.util.Collection collection
        end local 2 // io.reactivex.functions.Function keySelector
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lio/reactivex/internal/operators/flowable/FlowableDistinct$DistinctSubscriber<TT;TK;>;
            0    4     1       actual  Lorg/reactivestreams/Subscriber<-TT;>;
            0    4     2  keySelector  Lio/reactivex/functions/Function<-TT;TK;>;
            0    4     3   collection  Ljava/util/Collection<-TK;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;Lio/reactivex/functions/Function<-TT;TK;>;Ljava/util/Collection<-TK;>;)V
    MethodParameters:
             Name  Flags
      actual       
      keySelector  
      collection   

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
        start local 1 // java.lang.Object value
         0: .line 72
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.done:Z
            ifeq 2
         1: .line 73
            return
         2: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.sourceMode:I
            ifne 14
         3: .line 80
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.keySelector:Lio/reactivex/functions/Function;
            aload 1 /* value */
            invokeinterface io.reactivex.functions.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            ldc "The keySelector returned a null key"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            astore 2 /* key */
        start local 2 // java.lang.Object key
         4: .line 81
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.collection:Ljava/util/Collection;
            aload 2 /* key */
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            istore 3 /* b */
        start local 3 // boolean b
         5: .line 82
            goto 9
        end local 3 // boolean b
        end local 2 // java.lang.Object key
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 4 /* ex */
        start local 4 // java.lang.Throwable ex
         7: .line 83
            aload 0 /* this */
            aload 4 /* ex */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.fail:(Ljava/lang/Throwable;)V
         8: .line 84
            return
        end local 4 // java.lang.Throwable ex
        start local 2 // java.lang.Object key
        start local 3 // boolean b
         9: .line 87
      StackMap locals: java.lang.Object int
      StackMap stack:
            iload 3 /* b */
            ifeq 12
        10: .line 88
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* value */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        11: .line 89
            goto 15
        12: .line 90
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.upstream:Lorg/reactivestreams/Subscription;
            lconst_1
            invokeinterface org.reactivestreams.Subscription.request:(J)V
        end local 3 // boolean b
        end local 2 // java.lang.Object key
        13: .line 92
            goto 15
        14: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aconst_null
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        15: .line 95
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object value
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lio/reactivex/internal/operators/flowable/FlowableDistinct$DistinctSubscriber<TT;TK;>;
            0   16     1  value  TT;
            4    6     2    key  TK;
            9   13     2    key  TK;
            5    6     3      b  Z
            9   13     3      b  Z
            7    9     4     ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     5       6  Class java.lang.Throwable
    Signature: (TT;)V
    MethodParameters:
       Name  Flags
      value  

  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.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
        start local 1 // java.lang.Throwable e
         0: .line 99
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.done:Z
            ifeq 3
         1: .line 100
            aload 1 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         2: .line 101
            goto 6
         3: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.done:Z
         4: .line 103
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.collection:Ljava/util/Collection;
            invokeinterface java.util.Collection.clear:()V
         5: .line 104
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         6: .line 106
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable e
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/reactivex/internal/operators/flowable/FlowableDistinct$DistinctSubscriber<TT;TK;>;
            0    7     1     e  Ljava/lang/Throwable;
    MethodParameters:
      Name  Flags
      e     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
         0: .line 110
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.done:Z
            ifne 4
         1: .line 111
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.done:Z
         2: .line 112
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.collection:Ljava/util/Collection;
            invokeinterface java.util.Collection.clear:()V
         3: .line 113
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
         4: .line 115
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/internal/operators/flowable/FlowableDistinct$DistinctSubscriber<TT;TK;>;

  public int requestFusion(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
        start local 1 // int mode
         0: .line 119
            aload 0 /* this */
            iload 1 /* mode */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.transitiveBoundaryFusion:(I)I
            ireturn
        end local 1 // int mode
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableDistinct$DistinctSubscriber<TT;TK;>;
            0    1     1  mode  I
    MethodParameters:
      Name  Flags
      mode  

  public T poll();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
         0: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
            invokeinterface io.reactivex.internal.fuseable.QueueSubscription.poll:()Ljava/lang/Object;
            astore 1 /* v */
        start local 1 // java.lang.Object v
         1: .line 128
            aload 1 /* v */
            ifnull 2
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.collection:Ljava/util/Collection;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.keySelector:Lio/reactivex/functions/Function;
            aload 1 /* v */
            invokeinterface io.reactivex.functions.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            ldc "The keySelector returned a null key"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            ifeq 3
         2: .line 129
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* v */
            areturn
         3: .line 131
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.sourceMode:I
            iconst_2
            if_icmpne 0
         4: .line 132
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.upstream:Lorg/reactivestreams/Subscription;
            lconst_1
            invokeinterface org.reactivestreams.Subscription.request:(J)V
        end local 1 // java.lang.Object v
         5: .line 125
            goto 0
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/reactivex/internal/operators/flowable/FlowableDistinct$DistinctSubscriber<TT;TK;>;
            1    5     1     v  TT;
    Exceptions:
      throws java.lang.Exception
    Signature: ()TT;
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.Nullable()

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
         0: .line 140
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber.collection:Ljava/util/Collection;
            invokeinterface java.util.Collection.clear:()V
         1: .line 141
            aload 0 /* this */
            invokespecial io.reactivex.internal.subscribers.BasicFuseableSubscriber.clear:()V
         2: .line 142
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableDistinct$DistinctSubscriber<TT;TK;>;
}
Signature: <T:Ljava/lang/Object;K:Ljava/lang/Object;>Lio/reactivex/internal/subscribers/BasicFuseableSubscriber<TT;TT;>;
SourceFile: "FlowableDistinct.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableDistinct
InnerClasses:
  final DistinctSubscriber = io.reactivex.internal.operators.flowable.FlowableDistinct$DistinctSubscriber of io.reactivex.internal.operators.flowable.FlowableDistinct