public final class io.reactivex.internal.operators.flowable.FlowableWindowBoundary<T, B> extends io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream<T, 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.FlowableWindowBoundary
  super_class: io.reactivex.internal.operators.flowable.AbstractFlowableWithUpstream
{
  final org.reactivestreams.Publisher<B> other;
    descriptor: Lorg/reactivestreams/Publisher;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Publisher<TB;>;

  final int capacityHint;
    descriptor: I
    flags: (0x0010) ACC_FINAL

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

  protected void subscribeActual(org.reactivestreams.Subscriber<? super io.reactivex.Flowable<T>>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableWindowBoundary this
        start local 1 // org.reactivestreams.Subscriber subscriber
         0: .line 41
            new io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryMainSubscriber
            dup
            aload 1 /* subscriber */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableWindowBoundary.capacityHint:I
            invokespecial io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryMainSubscriber.<init>:(Lorg/reactivestreams/Subscriber;I)V
            astore 2 /* parent */
        start local 2 // io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryMainSubscriber parent
         1: .line 43
            aload 1 /* subscriber */
            aload 2 /* parent */
            invokeinterface org.reactivestreams.Subscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
         2: .line 45
            aload 2 /* parent */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryMainSubscriber.innerNext:()V
         3: .line 47
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableWindowBoundary.other:Lorg/reactivestreams/Publisher;
            aload 2 /* parent */
            getfield io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryMainSubscriber.boundarySubscriber:Lio/reactivex/internal/operators/flowable/FlowableWindowBoundary$WindowBoundaryInnerSubscriber;
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
         4: .line 49
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableWindowBoundary.source:Lio/reactivex/Flowable;
            aload 2 /* parent */
            invokevirtual io.reactivex.Flowable.subscribe:(Lio/reactivex/FlowableSubscriber;)V
         5: .line 50
            return
        end local 2 // io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryMainSubscriber parent
        end local 1 // org.reactivestreams.Subscriber subscriber
        end local 0 // io.reactivex.internal.operators.flowable.FlowableWindowBoundary this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lio/reactivex/internal/operators/flowable/FlowableWindowBoundary<TT;TB;>;
            0    6     1  subscriber  Lorg/reactivestreams/Subscriber<-Lio/reactivex/Flowable<TT;>;>;
            1    6     2      parent  Lio/reactivex/internal/operators/flowable/FlowableWindowBoundary$WindowBoundaryMainSubscriber<TT;TB;>;
    Signature: (Lorg/reactivestreams/Subscriber<-Lio/reactivex/Flowable<TT;>;>;)V
    MethodParameters:
            Name  Flags
      subscriber  
}
Signature: <T:Ljava/lang/Object;B:Ljava/lang/Object;>Lio/reactivex/internal/operators/flowable/AbstractFlowableWithUpstream<TT;Lio/reactivex/Flowable<TT;>;>;
SourceFile: "FlowableWindowBoundary.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryInnerSubscriber  io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryMainSubscriber
InnerClasses:
  final WindowBoundaryInnerSubscriber = io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryInnerSubscriber of io.reactivex.internal.operators.flowable.FlowableWindowBoundary
  final WindowBoundaryMainSubscriber = io.reactivex.internal.operators.flowable.FlowableWindowBoundary$WindowBoundaryMainSubscriber of io.reactivex.internal.operators.flowable.FlowableWindowBoundary