public final class io.reactivex.internal.operators.flowable.FlowableReplay<T> extends io.reactivex.flowables.ConnectableFlowable<T> implements io.reactivex.internal.fuseable.HasUpstreamPublisher<T>, io.reactivex.internal.disposables.ResettableConnectable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableReplay
  super_class: io.reactivex.flowables.ConnectableFlowable
{
  final io.reactivex.Flowable<T> source;
    descriptor: Lio/reactivex/Flowable;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/Flowable<TT;>;

  final java.util.concurrent.atomic.AtomicReference<io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber<T>> current;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplaySubscriber<TT;>;>;

  final java.util.concurrent.Callable<? extends io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer<T>> bufferFactory;
    descriptor: Ljava/util/concurrent/Callable;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/Callable<+Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplayBuffer<TT;>;>;

  final org.reactivestreams.Publisher<T> onSubscribe;
    descriptor: Lorg/reactivestreams/Publisher;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Publisher<TT;>;

  static final java.util.concurrent.Callable DEFAULT_UNBOUNDED_FACTORY;
    descriptor: Ljava/util/concurrent/Callable;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 47
            new io.reactivex.internal.operators.flowable.FlowableReplay$DefaultUnboundedFactory
            dup
            invokespecial io.reactivex.internal.operators.flowable.FlowableReplay$DefaultUnboundedFactory.<init>:()V
            putstatic io.reactivex.internal.operators.flowable.FlowableReplay.DEFAULT_UNBOUNDED_FACTORY:Ljava/util/concurrent/Callable;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static <U, R> io.reactivex.Flowable<R> multicastSelector(java.util.concurrent.Callable<? extends io.reactivex.flowables.ConnectableFlowable<U>>, io.reactivex.functions.Function<? super io.reactivex.Flowable<U>, ? extends org.reactivestreams.Publisher<R>>);
    descriptor: (Ljava/util/concurrent/Callable;Lio/reactivex/functions/Function;)Lio/reactivex/Flowable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.util.concurrent.Callable connectableFactory
        start local 1 // io.reactivex.functions.Function selector
         0: .line 61
            new io.reactivex.internal.operators.flowable.FlowableReplay$MulticastFlowable
            dup
            aload 0 /* connectableFactory */
            aload 1 /* selector */
            invokespecial io.reactivex.internal.operators.flowable.FlowableReplay$MulticastFlowable.<init>:(Ljava/util/concurrent/Callable;Lio/reactivex/functions/Function;)V
            areturn
        end local 1 // io.reactivex.functions.Function selector
        end local 0 // java.util.concurrent.Callable connectableFactory
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    1     0  connectableFactory  Ljava/util/concurrent/Callable<+Lio/reactivex/flowables/ConnectableFlowable<TU;>;>;
            0    1     1            selector  Lio/reactivex/functions/Function<-Lio/reactivex/Flowable<TU;>;+Lorg/reactivestreams/Publisher<TR;>;>;
    Signature: <U:Ljava/lang/Object;R:Ljava/lang/Object;>(Ljava/util/concurrent/Callable<+Lio/reactivex/flowables/ConnectableFlowable<TU;>;>;Lio/reactivex/functions/Function<-Lio/reactivex/Flowable<TU;>;+Lorg/reactivestreams/Publisher<TR;>;>;)Lio/reactivex/Flowable<TR;>;
    MethodParameters:
                    Name  Flags
      connectableFactory  final
      selector            final

  public static <T> io.reactivex.flowables.ConnectableFlowable<T> observeOn(io.reactivex.flowables.ConnectableFlowable<T>, io.reactivex.Scheduler);
    descriptor: (Lio/reactivex/flowables/ConnectableFlowable;Lio/reactivex/Scheduler;)Lio/reactivex/flowables/ConnectableFlowable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.reactivex.flowables.ConnectableFlowable cf
        start local 1 // io.reactivex.Scheduler scheduler
         0: .line 73
            aload 0 /* cf */
            aload 1 /* scheduler */
            invokevirtual io.reactivex.flowables.ConnectableFlowable.observeOn:(Lio/reactivex/Scheduler;)Lio/reactivex/Flowable;
            astore 2 /* flowable */
        start local 2 // io.reactivex.Flowable flowable
         1: .line 74
            new io.reactivex.internal.operators.flowable.FlowableReplay$ConnectableFlowableReplay
            dup
            aload 0 /* cf */
            aload 2 /* flowable */
            invokespecial io.reactivex.internal.operators.flowable.FlowableReplay$ConnectableFlowableReplay.<init>:(Lio/reactivex/flowables/ConnectableFlowable;Lio/reactivex/Flowable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onAssembly:(Lio/reactivex/flowables/ConnectableFlowable;)Lio/reactivex/flowables/ConnectableFlowable;
            areturn
        end local 2 // io.reactivex.Flowable flowable
        end local 1 // io.reactivex.Scheduler scheduler
        end local 0 // io.reactivex.flowables.ConnectableFlowable cf
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0         cf  Lio/reactivex/flowables/ConnectableFlowable<TT;>;
            0    2     1  scheduler  Lio/reactivex/Scheduler;
            1    2     2   flowable  Lio/reactivex/Flowable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/reactivex/flowables/ConnectableFlowable<TT;>;Lio/reactivex/Scheduler;)Lio/reactivex/flowables/ConnectableFlowable<TT;>;
    MethodParameters:
           Name  Flags
      cf         final
      scheduler  final

  public static <T> io.reactivex.flowables.ConnectableFlowable<T> createFrom(io.reactivex.Flowable<? extends T>);
    descriptor: (Lio/reactivex/Flowable;)Lio/reactivex/flowables/ConnectableFlowable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.Flowable source
         0: .line 85
            aload 0 /* source */
            getstatic io.reactivex.internal.operators.flowable.FlowableReplay.DEFAULT_UNBOUNDED_FACTORY:Ljava/util/concurrent/Callable;
            invokestatic io.reactivex.internal.operators.flowable.FlowableReplay.create:(Lio/reactivex/Flowable;Ljava/util/concurrent/Callable;)Lio/reactivex/flowables/ConnectableFlowable;
            areturn
        end local 0 // io.reactivex.Flowable source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  source  Lio/reactivex/Flowable<+TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/reactivex/Flowable<+TT;>;)Lio/reactivex/flowables/ConnectableFlowable<TT;>;
    MethodParameters:
        Name  Flags
      source  

  public static <T> io.reactivex.flowables.ConnectableFlowable<T> create(io.reactivex.Flowable<T>, int);
    descriptor: (Lio/reactivex/Flowable;I)Lio/reactivex/flowables/ConnectableFlowable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.reactivex.Flowable source
        start local 1 // int bufferSize
         0: .line 97
            iload 1 /* bufferSize */
            ldc 2147483647
            if_icmpne 2
         1: .line 98
            aload 0 /* source */
            invokestatic io.reactivex.internal.operators.flowable.FlowableReplay.createFrom:(Lio/reactivex/Flowable;)Lio/reactivex/flowables/ConnectableFlowable;
            areturn
         2: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* source */
            new io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBufferTask
            dup
            iload 1 /* bufferSize */
            invokespecial io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBufferTask.<init>:(I)V
            invokestatic io.reactivex.internal.operators.flowable.FlowableReplay.create:(Lio/reactivex/Flowable;Ljava/util/concurrent/Callable;)Lio/reactivex/flowables/ConnectableFlowable;
            areturn
        end local 1 // int bufferSize
        end local 0 // io.reactivex.Flowable source
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0      source  Lio/reactivex/Flowable<TT;>;
            0    3     1  bufferSize  I
    Signature: <T:Ljava/lang/Object;>(Lio/reactivex/Flowable<TT;>;I)Lio/reactivex/flowables/ConnectableFlowable<TT;>;
    MethodParameters:
            Name  Flags
      source      
      bufferSize  final

  public static <T> io.reactivex.flowables.ConnectableFlowable<T> create(io.reactivex.Flowable<T>, long, java.util.concurrent.TimeUnit, io.reactivex.Scheduler);
    descriptor: (Lio/reactivex/Flowable;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;)Lio/reactivex/flowables/ConnectableFlowable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // io.reactivex.Flowable source
        start local 1 // long maxAge
        start local 3 // java.util.concurrent.TimeUnit unit
        start local 4 // io.reactivex.Scheduler scheduler
         0: .line 114
            aload 0 /* source */
            lload 1 /* maxAge */
            aload 3 /* unit */
            aload 4 /* scheduler */
            ldc 2147483647
            invokestatic io.reactivex.internal.operators.flowable.FlowableReplay.create:(Lio/reactivex/Flowable;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;I)Lio/reactivex/flowables/ConnectableFlowable;
            areturn
        end local 4 // io.reactivex.Scheduler scheduler
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long maxAge
        end local 0 // io.reactivex.Flowable source
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0     source  Lio/reactivex/Flowable<TT;>;
            0    1     1     maxAge  J
            0    1     3       unit  Ljava/util/concurrent/TimeUnit;
            0    1     4  scheduler  Lio/reactivex/Scheduler;
    Signature: <T:Ljava/lang/Object;>(Lio/reactivex/Flowable<TT;>;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;)Lio/reactivex/flowables/ConnectableFlowable<TT;>;
    MethodParameters:
           Name  Flags
      source     
      maxAge     
      unit       
      scheduler  

  public static <T> io.reactivex.flowables.ConnectableFlowable<T> create(io.reactivex.Flowable<T>, long, java.util.concurrent.TimeUnit, io.reactivex.Scheduler, int);
    descriptor: (Lio/reactivex/Flowable;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;I)Lio/reactivex/flowables/ConnectableFlowable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=8, locals=6, args_size=5
        start local 0 // io.reactivex.Flowable source
        start local 1 // long maxAge
        start local 3 // java.util.concurrent.TimeUnit unit
        start local 4 // io.reactivex.Scheduler scheduler
        start local 5 // int bufferSize
         0: .line 129
            aload 0 /* source */
            new io.reactivex.internal.operators.flowable.FlowableReplay$ScheduledReplayBufferTask
            dup
            iload 5 /* bufferSize */
            lload 1 /* maxAge */
            aload 3 /* unit */
            aload 4 /* scheduler */
            invokespecial io.reactivex.internal.operators.flowable.FlowableReplay$ScheduledReplayBufferTask.<init>:(IJLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;)V
            invokestatic io.reactivex.internal.operators.flowable.FlowableReplay.create:(Lio/reactivex/Flowable;Ljava/util/concurrent/Callable;)Lio/reactivex/flowables/ConnectableFlowable;
            areturn
        end local 5 // int bufferSize
        end local 4 // io.reactivex.Scheduler scheduler
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long maxAge
        end local 0 // io.reactivex.Flowable source
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0      source  Lio/reactivex/Flowable<TT;>;
            0    1     1      maxAge  J
            0    1     3        unit  Ljava/util/concurrent/TimeUnit;
            0    1     4   scheduler  Lio/reactivex/Scheduler;
            0    1     5  bufferSize  I
    Signature: <T:Ljava/lang/Object;>(Lio/reactivex/Flowable<TT;>;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;I)Lio/reactivex/flowables/ConnectableFlowable<TT;>;
    MethodParameters:
            Name  Flags
      source      
      maxAge      final
      unit        final
      scheduler   final
      bufferSize  final

  static <T> io.reactivex.flowables.ConnectableFlowable<T> create(io.reactivex.Flowable<T>, java.util.concurrent.Callable<? extends io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer<T>>);
    descriptor: (Lio/reactivex/Flowable;Ljava/util/concurrent/Callable;)Lio/reactivex/flowables/ConnectableFlowable;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // io.reactivex.Flowable source
        start local 1 // java.util.concurrent.Callable bufferFactory
         0: .line 141
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            astore 2 /* curr */
        start local 2 // java.util.concurrent.atomic.AtomicReference curr
         1: .line 142
            new io.reactivex.internal.operators.flowable.FlowableReplay$ReplayPublisher
            dup
            aload 2 /* curr */
            aload 1 /* bufferFactory */
            invokespecial io.reactivex.internal.operators.flowable.FlowableReplay$ReplayPublisher.<init>:(Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/Callable;)V
            astore 3 /* onSubscribe */
        start local 3 // org.reactivestreams.Publisher onSubscribe
         2: .line 143
            new io.reactivex.internal.operators.flowable.FlowableReplay
            dup
            aload 3 /* onSubscribe */
            aload 0 /* source */
            aload 2 /* curr */
            aload 1 /* bufferFactory */
            invokespecial io.reactivex.internal.operators.flowable.FlowableReplay.<init>:(Lorg/reactivestreams/Publisher;Lio/reactivex/Flowable;Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/Callable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onAssembly:(Lio/reactivex/flowables/ConnectableFlowable;)Lio/reactivex/flowables/ConnectableFlowable;
            areturn
        end local 3 // org.reactivestreams.Publisher onSubscribe
        end local 2 // java.util.concurrent.atomic.AtomicReference curr
        end local 1 // java.util.concurrent.Callable bufferFactory
        end local 0 // io.reactivex.Flowable source
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0         source  Lio/reactivex/Flowable<TT;>;
            0    3     1  bufferFactory  Ljava/util/concurrent/Callable<+Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplayBuffer<TT;>;>;
            1    3     2           curr  Ljava/util/concurrent/atomic/AtomicReference<Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplaySubscriber<TT;>;>;
            2    3     3    onSubscribe  Lorg/reactivestreams/Publisher<TT;>;
    Signature: <T:Ljava/lang/Object;>(Lio/reactivex/Flowable<TT;>;Ljava/util/concurrent/Callable<+Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplayBuffer<TT;>;>;)Lio/reactivex/flowables/ConnectableFlowable<TT;>;
    MethodParameters:
               Name  Flags
      source         
      bufferFactory  final

  private void <init>(org.reactivestreams.Publisher<T>, io.reactivex.Flowable<T>, java.util.concurrent.atomic.AtomicReference<io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber<T>>, java.util.concurrent.Callable<? extends io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer<T>>);
    descriptor: (Lorg/reactivestreams/Publisher;Lio/reactivex/Flowable;Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/Callable;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
        start local 1 // org.reactivestreams.Publisher onSubscribe
        start local 2 // io.reactivex.Flowable source
        start local 3 // java.util.concurrent.atomic.AtomicReference current
        start local 4 // java.util.concurrent.Callable bufferFactory
         0: .line 146
            aload 0 /* this */
            invokespecial io.reactivex.flowables.ConnectableFlowable.<init>:()V
         1: .line 149
            aload 0 /* this */
            aload 1 /* onSubscribe */
            putfield io.reactivex.internal.operators.flowable.FlowableReplay.onSubscribe:Lorg/reactivestreams/Publisher;
         2: .line 150
            aload 0 /* this */
            aload 2 /* source */
            putfield io.reactivex.internal.operators.flowable.FlowableReplay.source:Lio/reactivex/Flowable;
         3: .line 151
            aload 0 /* this */
            aload 3 /* current */
            putfield io.reactivex.internal.operators.flowable.FlowableReplay.current:Ljava/util/concurrent/atomic/AtomicReference;
         4: .line 152
            aload 0 /* this */
            aload 4 /* bufferFactory */
            putfield io.reactivex.internal.operators.flowable.FlowableReplay.bufferFactory:Ljava/util/concurrent/Callable;
         5: .line 153
            return
        end local 4 // java.util.concurrent.Callable bufferFactory
        end local 3 // java.util.concurrent.atomic.AtomicReference current
        end local 2 // io.reactivex.Flowable source
        end local 1 // org.reactivestreams.Publisher onSubscribe
        end local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lio/reactivex/internal/operators/flowable/FlowableReplay<TT;>;
            0    6     1    onSubscribe  Lorg/reactivestreams/Publisher<TT;>;
            0    6     2         source  Lio/reactivex/Flowable<TT;>;
            0    6     3        current  Ljava/util/concurrent/atomic/AtomicReference<Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplaySubscriber<TT;>;>;
            0    6     4  bufferFactory  Ljava/util/concurrent/Callable<+Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplayBuffer<TT;>;>;
    Signature: (Lorg/reactivestreams/Publisher<TT;>;Lio/reactivex/Flowable<TT;>;Ljava/util/concurrent/atomic/AtomicReference<Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplaySubscriber<TT;>;>;Ljava/util/concurrent/Callable<+Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplayBuffer<TT;>;>;)V
    MethodParameters:
               Name  Flags
      onSubscribe    
      source         
      current        final
      bufferFactory  final

  public org.reactivestreams.Publisher<T> source();
    descriptor: ()Lorg/reactivestreams/Publisher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
         0: .line 157
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay.source:Lio/reactivex/Flowable;
            areturn
        end local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableReplay<TT;>;
    Signature: ()Lorg/reactivestreams/Publisher<TT;>;

  protected void subscribeActual(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
        start local 1 // org.reactivestreams.Subscriber s
         0: .line 162
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay.onSubscribe:Lorg/reactivestreams/Publisher;
            aload 1 /* s */
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
         1: .line 163
            return
        end local 1 // org.reactivestreams.Subscriber s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableReplay<TT;>;
            0    2     1     s  Lorg/reactivestreams/Subscriber<-TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
      Name  Flags
      s     

  public void resetIf(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
        start local 1 // io.reactivex.disposables.Disposable connectionObject
         0: .line 168
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay.current:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* connectionObject */
            checkcast io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
         1: .line 169
            return
        end local 1 // io.reactivex.disposables.Disposable connectionObject
        end local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lio/reactivex/internal/operators/flowable/FlowableReplay<TT;>;
            0    2     1  connectionObject  Lio/reactivex/disposables/Disposable;
    MethodParameters:
                  Name  Flags
      connectionObject  

  public void connect(io.reactivex.functions.Consumer<? super io.reactivex.disposables.Disposable>);
    descriptor: (Lio/reactivex/functions/Consumer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
        start local 1 // io.reactivex.functions.Consumer connection
         0: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay.current:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber
            astore 3 /* ps */
        start local 3 // io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber ps
         1: .line 180
            aload 3 /* ps */
            ifnull 2
            aload 3 /* ps */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber.isDisposed:()Z
            ifeq 11
         2: .line 185
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableReplay io.reactivex.functions.Consumer top io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay.bufferFactory:Ljava/util/concurrent/Callable;
            invokeinterface java.util.concurrent.Callable.call:()Ljava/lang/Object;
            checkcast io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer
            astore 4 /* buf */
        start local 4 // io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer buf
         3: .line 186
            goto 7
        end local 4 // io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer buf
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 5 /* ex */
        start local 5 // java.lang.Throwable ex
         5: .line 187
            aload 5 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 188
            aload 5 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 5 // java.lang.Throwable ex
        start local 4 // io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer buf
         7: .line 192
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer
      StackMap stack:
            new io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber
            dup
            aload 4 /* buf */
            invokespecial io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber.<init>:(Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplayBuffer;)V
            astore 5 /* u */
        start local 5 // io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber u
         8: .line 194
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay.current:Ljava/util/concurrent/atomic/AtomicReference;
            aload 3 /* ps */
            aload 5 /* u */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 10
         9: .line 197
            goto 0
        10: .line 199
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber
      StackMap stack:
            aload 5 /* u */
            astore 3 /* ps */
        end local 5 // io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber u
        end local 4 // io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer buf
        11: .line 203
      StackMap locals:
      StackMap stack:
            aload 3 /* ps */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber.shouldConnect:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifne 12
            aload 3 /* ps */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber.shouldConnect:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifeq 12
            iconst_1
            goto 13
      StackMap locals:
      StackMap stack:
        12: iconst_0
      StackMap locals:
      StackMap stack: int
        13: istore 2 /* doConnect */
        start local 2 // boolean doConnect
        14: .line 220
            aload 1 /* connection */
            aload 3 /* ps */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
        15: .line 221
            goto 21
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableReplay io.reactivex.functions.Consumer int io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber
      StackMap stack: java.lang.Throwable
        16: astore 4 /* ex */
        start local 4 // java.lang.Throwable ex
        17: .line 222
            iload 2 /* doConnect */
            ifeq 19
        18: .line 223
            aload 3 /* ps */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber.shouldConnect:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            iconst_0
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            pop
        19: .line 225
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 4 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        20: .line 226
            aload 4 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 4 // java.lang.Throwable ex
        21: .line 228
      StackMap locals:
      StackMap stack:
            iload 2 /* doConnect */
            ifeq 23
        22: .line 229
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableReplay.source:Lio/reactivex/Flowable;
            aload 3 /* ps */
            invokevirtual io.reactivex.Flowable.subscribe:(Lio/reactivex/FlowableSubscriber;)V
        23: .line 231
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber ps
        end local 2 // boolean doConnect
        end local 1 // io.reactivex.functions.Consumer connection
        end local 0 // io.reactivex.internal.operators.flowable.FlowableReplay this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   24     0        this  Lio/reactivex/internal/operators/flowable/FlowableReplay<TT;>;
            0   24     1  connection  Lio/reactivex/functions/Consumer<-Lio/reactivex/disposables/Disposable;>;
           14   24     2   doConnect  Z
            1   24     3          ps  Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplaySubscriber<TT;>;
            3    4     4         buf  Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplayBuffer<TT;>;
            7   11     4         buf  Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplayBuffer<TT;>;
            5    7     5          ex  Ljava/lang/Throwable;
            8   11     5           u  Lio/reactivex/internal/operators/flowable/FlowableReplay$ReplaySubscriber<TT;>;
           17   21     4          ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
          14    15      16  Class java.lang.Throwable
    Signature: (Lio/reactivex/functions/Consumer<-Lio/reactivex/disposables/Disposable;>;)V
    MethodParameters:
            Name  Flags
      connection  
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/flowables/ConnectableFlowable<TT;>;Lio/reactivex/internal/fuseable/HasUpstreamPublisher<TT;>;Lio/reactivex/internal/disposables/ResettableConnectable;
SourceFile: "FlowableReplay.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableReplay$BoundedReplayBuffer  io.reactivex.internal.operators.flowable.FlowableReplay$ConnectableFlowableReplay  io.reactivex.internal.operators.flowable.FlowableReplay$DefaultUnboundedFactory  io.reactivex.internal.operators.flowable.FlowableReplay$InnerSubscription  io.reactivex.internal.operators.flowable.FlowableReplay$MulticastFlowable  io.reactivex.internal.operators.flowable.FlowableReplay$MulticastFlowable$DisposableConsumer  io.reactivex.internal.operators.flowable.FlowableReplay$Node  io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer  io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBufferTask  io.reactivex.internal.operators.flowable.FlowableReplay$ReplayPublisher  io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber  io.reactivex.internal.operators.flowable.FlowableReplay$ScheduledReplayBufferTask  io.reactivex.internal.operators.flowable.FlowableReplay$SizeAndTimeBoundReplayBuffer  io.reactivex.internal.operators.flowable.FlowableReplay$SizeBoundReplayBuffer  io.reactivex.internal.operators.flowable.FlowableReplay$UnboundedReplayBuffer
InnerClasses:
  BoundedReplayBuffer = io.reactivex.internal.operators.flowable.FlowableReplay$BoundedReplayBuffer of io.reactivex.internal.operators.flowable.FlowableReplay
  final ConnectableFlowableReplay = io.reactivex.internal.operators.flowable.FlowableReplay$ConnectableFlowableReplay of io.reactivex.internal.operators.flowable.FlowableReplay
  final DefaultUnboundedFactory = io.reactivex.internal.operators.flowable.FlowableReplay$DefaultUnboundedFactory of io.reactivex.internal.operators.flowable.FlowableReplay
  final InnerSubscription = io.reactivex.internal.operators.flowable.FlowableReplay$InnerSubscription of io.reactivex.internal.operators.flowable.FlowableReplay
  final MulticastFlowable = io.reactivex.internal.operators.flowable.FlowableReplay$MulticastFlowable of io.reactivex.internal.operators.flowable.FlowableReplay
  final Node = io.reactivex.internal.operators.flowable.FlowableReplay$Node of io.reactivex.internal.operators.flowable.FlowableReplay
  abstract ReplayBuffer = io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBuffer of io.reactivex.internal.operators.flowable.FlowableReplay
  final ReplayBufferTask = io.reactivex.internal.operators.flowable.FlowableReplay$ReplayBufferTask of io.reactivex.internal.operators.flowable.FlowableReplay
  final ReplayPublisher = io.reactivex.internal.operators.flowable.FlowableReplay$ReplayPublisher of io.reactivex.internal.operators.flowable.FlowableReplay
  final ReplaySubscriber = io.reactivex.internal.operators.flowable.FlowableReplay$ReplaySubscriber of io.reactivex.internal.operators.flowable.FlowableReplay
  final ScheduledReplayBufferTask = io.reactivex.internal.operators.flowable.FlowableReplay$ScheduledReplayBufferTask of io.reactivex.internal.operators.flowable.FlowableReplay
  final SizeAndTimeBoundReplayBuffer = io.reactivex.internal.operators.flowable.FlowableReplay$SizeAndTimeBoundReplayBuffer of io.reactivex.internal.operators.flowable.FlowableReplay
  final SizeBoundReplayBuffer = io.reactivex.internal.operators.flowable.FlowableReplay$SizeBoundReplayBuffer of io.reactivex.internal.operators.flowable.FlowableReplay
  final UnboundedReplayBuffer = io.reactivex.internal.operators.flowable.FlowableReplay$UnboundedReplayBuffer of io.reactivex.internal.operators.flowable.FlowableReplay