public final class io.reactivex.internal.operators.flowable.FlowableSamplePublisher<T> extends io.reactivex.Flowable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableSamplePublisher
  super_class: io.reactivex.Flowable
{
  final org.reactivestreams.Publisher<T> source;
    descriptor: Lorg/reactivestreams/Publisher;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Publisher<TT;>;

  final org.reactivestreams.Publisher<?> other;
    descriptor: Lorg/reactivestreams/Publisher;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Publisher<*>;

  final boolean emitLast;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  public void <init>(org.reactivestreams.Publisher<T>, org.reactivestreams.Publisher<?>, );
    descriptor: (Lorg/reactivestreams/Publisher;Lorg/reactivestreams/Publisher;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.reactivex.internal.operators.flowable.FlowableSamplePublisher this
        start local 1 // org.reactivestreams.Publisher source
        start local 2 // org.reactivestreams.Publisher other
        start local 3 // boolean emitLast
         0: .line 32
            aload 0 /* this */
            invokespecial io.reactivex.Flowable.<init>:()V
         1: .line 33
            aload 0 /* this */
            aload 1 /* source */
            putfield io.reactivex.internal.operators.flowable.FlowableSamplePublisher.source:Lorg/reactivestreams/Publisher;
         2: .line 34
            aload 0 /* this */
            aload 2 /* other */
            putfield io.reactivex.internal.operators.flowable.FlowableSamplePublisher.other:Lorg/reactivestreams/Publisher;
         3: .line 35
            aload 0 /* this */
            iload 3 /* emitLast */
            putfield io.reactivex.internal.operators.flowable.FlowableSamplePublisher.emitLast:Z
         4: .line 36
            return
        end local 3 // boolean emitLast
        end local 2 // org.reactivestreams.Publisher other
        end local 1 // org.reactivestreams.Publisher source
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSamplePublisher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/reactivex/internal/operators/flowable/FlowableSamplePublisher<TT;>;
            0    5     1    source  Lorg/reactivestreams/Publisher<TT;>;
            0    5     2     other  Lorg/reactivestreams/Publisher<*>;
            0    5     3  emitLast  Z
    Signature: (Lorg/reactivestreams/Publisher<TT;>;Lorg/reactivestreams/Publisher<*>;Z)V
    MethodParameters:
          Name  Flags
      source    
      other     
      emitLast  

  protected void subscribeActual(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableSamplePublisher this
        start local 1 // org.reactivestreams.Subscriber s
         0: .line 40
            new io.reactivex.subscribers.SerializedSubscriber
            dup
            aload 1 /* s */
            invokespecial io.reactivex.subscribers.SerializedSubscriber.<init>:(Lorg/reactivestreams/Subscriber;)V
            astore 2 /* serial */
        start local 2 // io.reactivex.subscribers.SerializedSubscriber serial
         1: .line 41
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSamplePublisher.emitLast:Z
            ifeq 4
         2: .line 42
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSamplePublisher.source:Lorg/reactivestreams/Publisher;
            new io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SampleMainEmitLast
            dup
            aload 2 /* serial */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSamplePublisher.other:Lorg/reactivestreams/Publisher;
            invokespecial io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SampleMainEmitLast.<init>:(Lorg/reactivestreams/Subscriber;Lorg/reactivestreams/Publisher;)V
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
         3: .line 43
            goto 5
         4: .line 44
      StackMap locals: io.reactivex.subscribers.SerializedSubscriber
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSamplePublisher.source:Lorg/reactivestreams/Publisher;
            new io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SampleMainNoLast
            dup
            aload 2 /* serial */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableSamplePublisher.other:Lorg/reactivestreams/Publisher;
            invokespecial io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SampleMainNoLast.<init>:(Lorg/reactivestreams/Subscriber;Lorg/reactivestreams/Publisher;)V
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
         5: .line 46
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.reactivex.subscribers.SerializedSubscriber serial
        end local 1 // org.reactivestreams.Subscriber s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableSamplePublisher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/reactivex/internal/operators/flowable/FlowableSamplePublisher<TT;>;
            0    6     1       s  Lorg/reactivestreams/Subscriber<-TT;>;
            1    6     2  serial  Lio/reactivex/subscribers/SerializedSubscriber<TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
      Name  Flags
      s     
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/Flowable<TT;>;
SourceFile: "FlowableSamplePublisher.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SampleMainEmitLast  io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SampleMainNoLast  io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SamplePublisherSubscriber  io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SamplerSubscriber
InnerClasses:
  final SampleMainEmitLast = io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SampleMainEmitLast of io.reactivex.internal.operators.flowable.FlowableSamplePublisher
  final SampleMainNoLast = io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SampleMainNoLast of io.reactivex.internal.operators.flowable.FlowableSamplePublisher
  abstract SamplePublisherSubscriber = io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SamplePublisherSubscriber of io.reactivex.internal.operators.flowable.FlowableSamplePublisher
  final SamplerSubscriber = io.reactivex.internal.operators.flowable.FlowableSamplePublisher$SamplerSubscriber of io.reactivex.internal.operators.flowable.FlowableSamplePublisher