final class io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver<T, U extends java.util.Collection<? super T>> extends io.reactivex.internal.observers.QueueDrainObserver<T, U, U> implements java.lang.Runnable, io.reactivex.disposables.Disposable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver
  super_class: io.reactivex.internal.observers.QueueDrainObserver
{
  final java.util.concurrent.Callable<U> bufferSupplier;
    descriptor: Ljava/util/concurrent/Callable;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/Callable<TU;>;

  final long timespan;
    descriptor: J
    flags: (0x0010) ACC_FINAL

  final java.util.concurrent.TimeUnit unit;
    descriptor: Ljava/util/concurrent/TimeUnit;
    flags: (0x0010) ACC_FINAL

  final io.reactivex.Scheduler scheduler;
    descriptor: Lio/reactivex/Scheduler;
    flags: (0x0010) ACC_FINAL

  io.reactivex.disposables.Disposable upstream;
    descriptor: Lio/reactivex/disposables/Disposable;
    flags: (0x0000) 

  U buffer;
    descriptor: Ljava/util/Collection;
    flags: (0x0000) 
    Signature: TU;

  final java.util.concurrent.atomic.AtomicReference<io.reactivex.disposables.Disposable> timer;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lio/reactivex/disposables/Disposable;>;

  void <init>(io.reactivex.Observer<? super U>, java.util.concurrent.Callable<U>, long, java.util.concurrent.TimeUnit, io.reactivex.Scheduler);
    descriptor: (Lio/reactivex/Observer;Ljava/util/concurrent/Callable;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=7, args_size=6
        start local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
        start local 1 // io.reactivex.Observer actual
        start local 2 // java.util.concurrent.Callable bufferSupplier
        start local 3 // long timespan
        start local 5 // java.util.concurrent.TimeUnit unit
        start local 6 // io.reactivex.Scheduler scheduler
         0: .line 97
            aload 0 /* this */
            aload 1 /* actual */
            new io.reactivex.internal.queue.MpscLinkedQueue
            dup
            invokespecial io.reactivex.internal.queue.MpscLinkedQueue.<init>:()V
            invokespecial io.reactivex.internal.observers.QueueDrainObserver.<init>:(Lio/reactivex/Observer;Lio/reactivex/internal/fuseable/SimplePlainQueue;)V
         1: .line 92
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timer:Ljava/util/concurrent/atomic/AtomicReference;
         2: .line 98
            aload 0 /* this */
            aload 2 /* bufferSupplier */
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.bufferSupplier:Ljava/util/concurrent/Callable;
         3: .line 99
            aload 0 /* this */
            lload 3 /* timespan */
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timespan:J
         4: .line 100
            aload 0 /* this */
            aload 5 /* unit */
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.unit:Ljava/util/concurrent/TimeUnit;
         5: .line 101
            aload 0 /* this */
            aload 6 /* scheduler */
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.scheduler:Lio/reactivex/Scheduler;
         6: .line 102
            return
        end local 6 // io.reactivex.Scheduler scheduler
        end local 5 // java.util.concurrent.TimeUnit unit
        end local 3 // long timespan
        end local 2 // java.util.concurrent.Callable bufferSupplier
        end local 1 // io.reactivex.Observer actual
        end local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lio/reactivex/internal/operators/observable/ObservableBufferTimed$BufferExactUnboundedObserver<TT;TU;>;
            0    7     1          actual  Lio/reactivex/Observer<-TU;>;
            0    7     2  bufferSupplier  Ljava/util/concurrent/Callable<TU;>;
            0    7     3        timespan  J
            0    7     5            unit  Ljava/util/concurrent/TimeUnit;
            0    7     6       scheduler  Lio/reactivex/Scheduler;
    Signature: (Lio/reactivex/Observer<-TU;>;Ljava/util/concurrent/Callable<TU;>;JLjava/util/concurrent/TimeUnit;Lio/reactivex/Scheduler;)V
    MethodParameters:
                Name  Flags
      actual          
      bufferSupplier  
      timespan        
      unit            
      scheduler       

  public void onSubscribe(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 106
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.upstream:Lio/reactivex/disposables/Disposable;
            aload 1 /* d */
            invokestatic io.reactivex.internal.disposables.DisposableHelper.validate:(Lio/reactivex/disposables/Disposable;Lio/reactivex/disposables/Disposable;)Z
            ifeq 15
         1: .line 107
            aload 0 /* this */
            aload 1 /* d */
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.upstream:Lio/reactivex/disposables/Disposable;
         2: .line 112
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.bufferSupplier:Ljava/util/concurrent/Callable;
            invokeinterface java.util.concurrent.Callable.call:()Ljava/lang/Object;
            checkcast java.util.Collection
            ldc "The buffer supplied is null"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.util.Collection
            astore 2 /* b */
        start local 2 // java.util.Collection b
         3: .line 113
            goto 9
        end local 2 // java.util.Collection b
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 3 /* e */
        start local 3 // java.lang.Throwable e
         5: .line 114
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 115
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.dispose:()V
         7: .line 116
            aload 3 /* e */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.downstream:Lio/reactivex/Observer;
            invokestatic io.reactivex.internal.disposables.EmptyDisposable.error:(Ljava/lang/Throwable;Lio/reactivex/Observer;)V
         8: .line 117
            return
        end local 3 // java.lang.Throwable e
        start local 2 // java.util.Collection b
         9: .line 120
      StackMap locals: java.util.Collection
      StackMap stack:
            aload 0 /* this */
            aload 2 /* b */
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.buffer:Ljava/util/Collection;
        10: .line 122
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.downstream:Lio/reactivex/Observer;
            aload 0 /* this */
            invokeinterface io.reactivex.Observer.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
        11: .line 124
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.cancelled:Z
            ifne 15
        12: .line 125
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.scheduler:Lio/reactivex/Scheduler;
            aload 0 /* this */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timespan:J
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timespan:J
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.unit:Ljava/util/concurrent/TimeUnit;
            invokevirtual io.reactivex.Scheduler.schedulePeriodicallyDirect:(Ljava/lang/Runnable;JJLjava/util/concurrent/TimeUnit;)Lio/reactivex/disposables/Disposable;
            astore 3 /* task */
        start local 3 // io.reactivex.disposables.Disposable task
        13: .line 126
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timer:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            aload 3 /* task */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 15
        14: .line 127
            aload 3 /* task */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
        end local 3 // io.reactivex.disposables.Disposable task
        end local 2 // java.util.Collection b
        15: .line 131
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lio/reactivex/internal/operators/observable/ObservableBufferTimed$BufferExactUnboundedObserver<TT;TU;>;
            0   16     1     d  Lio/reactivex/disposables/Disposable;
            3    4     2     b  TU;
            9   15     2     b  TU;
            5    9     3     e  Ljava/lang/Throwable;
           13   15     3  task  Lio/reactivex/disposables/Disposable;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      d     

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
        start local 1 // java.lang.Object t
         0: .line 135
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 136
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.buffer:Ljava/util/Collection;
            astore 3 /* b */
        start local 3 // java.util.Collection b
         2: .line 137
            aload 3 /* b */
            ifnonnull 5
         3: .line 138
            aload 2
            monitorexit
         4: return
         5: .line 140
      StackMap locals: io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver java.util.Collection
      StackMap stack:
            aload 3 /* b */
            aload 1 /* t */
            invokeinterface java.util.Collection.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.util.Collection b
         6: .line 135
            aload 2
            monitorexit
         7: goto 10
      StackMap locals: io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver java.lang.Object io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver
      StackMap stack: java.lang.Throwable
         8: aload 2
            monitorexit
         9: athrow
        10: .line 142
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/reactivex/internal/operators/observable/ObservableBufferTimed$BufferExactUnboundedObserver<TT;TU;>;
            0   11     1     t  TT;
            2    6     3     b  TU;
      Exception table:
        from    to  target  type
           1     4       8  any
           5     7       8  any
           8     9       8  any
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
        start local 1 // java.lang.Throwable t
         0: .line 146
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 147
            aload 0 /* this */
            aconst_null
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.buffer:Ljava/util/Collection;
         2: .line 146
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver java.lang.Throwable io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* t */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
         7: .line 150
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timer:Ljava/util/concurrent/atomic/AtomicReference;
            invokestatic io.reactivex.internal.disposables.DisposableHelper.dispose:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            pop
         8: .line 151
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/reactivex/internal/operators/observable/ObservableBufferTimed$BufferExactUnboundedObserver<TT;TU;>;
            0    9     1     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
         0: .line 156
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 157
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.buffer:Ljava/util/Collection;
            astore 1 /* b */
        start local 1 // java.util.Collection b
         2: .line 158
            aload 0 /* this */
            aconst_null
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.buffer:Ljava/util/Collection;
         3: .line 156
            aload 2
            monitorexit
         4: goto 7
        end local 1 // java.util.Collection b
      StackMap locals: io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver top io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver
      StackMap stack: java.lang.Throwable
         5: aload 2
            monitorexit
         6: athrow
        start local 1 // java.util.Collection b
         7: .line 160
      StackMap locals: io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver java.util.Collection
      StackMap stack:
            aload 1 /* b */
            ifnull 12
         8: .line 161
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            aload 1 /* b */
            invokeinterface io.reactivex.internal.fuseable.SimplePlainQueue.offer:(Ljava/lang/Object;)Z
            pop
         9: .line 162
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.done:Z
        10: .line 163
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.enter:()Z
            ifeq 12
        11: .line 164
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.queue:Lio/reactivex/internal/fuseable/SimplePlainQueue;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.downstream:Lio/reactivex/Observer;
            iconst_0
            aconst_null
            aload 0 /* this */
            invokestatic io.reactivex.internal.util.QueueDrainHelper.drainLoop:(Lio/reactivex/internal/fuseable/SimplePlainQueue;Lio/reactivex/Observer;ZLio/reactivex/disposables/Disposable;Lio/reactivex/internal/util/ObservableQueueDrain;)V
        12: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timer:Ljava/util/concurrent/atomic/AtomicReference;
            invokestatic io.reactivex.internal.disposables.DisposableHelper.dispose:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            pop
        13: .line 168
            return
        end local 1 // java.util.Collection b
        end local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/reactivex/internal/operators/observable/ObservableBufferTimed$BufferExactUnboundedObserver<TT;TU;>;
            2    5     1     b  TU;
            7   14     1     b  TU;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  public void dispose();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
         0: .line 172
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timer:Ljava/util/concurrent/atomic/AtomicReference;
            invokestatic io.reactivex.internal.disposables.DisposableHelper.dispose:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            pop
         1: .line 173
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.upstream:Lio/reactivex/disposables/Disposable;
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         2: .line 174
            return
        end local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/observable/ObservableBufferTimed$BufferExactUnboundedObserver<TT;TU;>;

  public boolean isDisposed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
         0: .line 178
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timer:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            getstatic io.reactivex.internal.disposables.DisposableHelper.DISPOSED:Lio/reactivex/internal/disposables/DisposableHelper;
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/observable/ObservableBufferTimed$BufferExactUnboundedObserver<TT;TU;>;

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
         0: .line 186
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.bufferSupplier:Ljava/util/concurrent/Callable;
            invokeinterface java.util.concurrent.Callable.call:()Ljava/lang/Object;
            checkcast java.util.Collection
            ldc "The bufferSupplier returned a null buffer"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.util.Collection
            astore 1 /* next */
        start local 1 // java.util.Collection next
         1: .line 187
            goto 7
        end local 1 // java.util.Collection next
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 2 /* e */
        start local 2 // java.lang.Throwable e
         3: .line 188
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         4: .line 189
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.downstream:Lio/reactivex/Observer;
            aload 2 /* e */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
         5: .line 190
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.dispose:()V
         6: .line 191
            return
        end local 2 // java.lang.Throwable e
        start local 1 // java.util.Collection next
         7: .line 196
      StackMap locals: java.util.Collection
      StackMap stack:
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         8: .line 197
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.buffer:Ljava/util/Collection;
            astore 2 /* current */
        start local 2 // java.util.Collection current
         9: .line 198
            aload 2 /* current */
            ifnull 11
        10: .line 199
            aload 0 /* this */
            aload 1 /* next */
            putfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.buffer:Ljava/util/Collection;
        11: .line 196
      StackMap locals: java.util.Collection io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver
      StackMap stack:
            aload 3
            monitorexit
        12: goto 15
        end local 2 // java.util.Collection current
      StackMap locals: io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver java.util.Collection top io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver
      StackMap stack: java.lang.Throwable
        13: aload 3
            monitorexit
        14: athrow
        start local 2 // java.util.Collection current
        15: .line 203
      StackMap locals: io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver java.util.Collection java.util.Collection
      StackMap stack:
            aload 2 /* current */
            ifnonnull 18
        16: .line 204
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.timer:Ljava/util/concurrent/atomic/AtomicReference;
            invokestatic io.reactivex.internal.disposables.DisposableHelper.dispose:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            pop
        17: .line 205
            return
        18: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* current */
            iconst_0
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.fastPathEmit:(Ljava/lang/Object;ZLio/reactivex/disposables/Disposable;)V
        19: .line 209
            return
        end local 2 // java.util.Collection current
        end local 1 // java.util.Collection next
        end local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   20     0     this  Lio/reactivex/internal/operators/observable/ObservableBufferTimed$BufferExactUnboundedObserver<TT;TU;>;
            1    2     1     next  TU;
            7   20     1     next  TU;
            3    7     2        e  Ljava/lang/Throwable;
            9   13     2  current  TU;
           15   20     2  current  TU;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
           8    12      13  any
          13    14      13  any

  public void accept(io.reactivex.Observer<? super U>, );
    descriptor: (Lio/reactivex/Observer;Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
        start local 1 // io.reactivex.Observer a
        start local 2 // java.util.Collection v
         0: .line 213
            aload 0 /* this */
            getfield io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.downstream:Lio/reactivex/Observer;
            aload 2 /* v */
            invokeinterface io.reactivex.Observer.onNext:(Ljava/lang/Object;)V
         1: .line 214
            return
        end local 2 // java.util.Collection v
        end local 1 // io.reactivex.Observer a
        end local 0 // io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/observable/ObservableBufferTimed$BufferExactUnboundedObserver<TT;TU;>;
            0    2     1     a  Lio/reactivex/Observer<-TU;>;
            0    2     2     v  TU;
    Signature: (Lio/reactivex/Observer<-TU;>;TU;)V
    MethodParameters:
      Name  Flags
      a     
      v     

  public void accept(io.reactivex.Observer, java.lang.Object);
    descriptor: (Lio/reactivex/Observer;Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast io.reactivex.Observer
            aload 2
            checkcast java.util.Collection
            invokevirtual io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver.accept:(Lio/reactivex/Observer;Ljava/util/Collection;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;U::Ljava/util/Collection<-TT;>;>Lio/reactivex/internal/observers/QueueDrainObserver<TT;TU;TU;>;Ljava/lang/Runnable;Lio/reactivex/disposables/Disposable;
SourceFile: "ObservableBufferTimed.java"
NestHost: io.reactivex.internal.operators.observable.ObservableBufferTimed
InnerClasses:
  final BufferExactUnboundedObserver = io.reactivex.internal.operators.observable.ObservableBufferTimed$BufferExactUnboundedObserver of io.reactivex.internal.operators.observable.ObservableBufferTimed