public class com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
  super_class: java.lang.Object
{
  private static final com.mongodb.diagnostics.logging.Logger LOGGER;
    descriptor: Lcom/mongodb/diagnostics/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int QUEUE_LENGTH_MULTIPLIER;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 32

  private static java.util.concurrent.atomic.AtomicInteger globalGroupCount;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private final int id;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.atomic.AtomicBoolean loggedTaskWarning;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.nio.channels.Selector selector;
    descriptor: Ljava/nio/channels/Selector;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final java.util.concurrent.ScheduledThreadPoolExecutor timeoutExecutor;
    descriptor: Ljava/util/concurrent/ScheduledThreadPoolExecutor;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Thread selectorThread;
    descriptor: Ljava/lang/Thread;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.ConcurrentLinkedQueue<com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket> pendingRegistrations;
    descriptor: Ljava/util/concurrent/ConcurrentLinkedQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/ConcurrentLinkedQueue<Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;>;

  private volatile com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown shutdown;
    descriptor: Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private java.util.concurrent.atomic.LongAdder selectionCount;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder startedReads;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder startedWrites;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder successfulReads;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder successfulWrites;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder failedReads;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder failedWrites;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder cancelledReads;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder cancelledWrites;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.AtomicInteger currentRegistrations;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder currentReads;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.atomic.LongAdder currentWrites;
    descriptor: Ljava/util/concurrent/atomic/LongAdder;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 69
            ldc "connection.tls"
            invokestatic com.mongodb.diagnostics.logging.Loggers.getLogger:(Ljava/lang/String;)Lcom/mongodb/diagnostics/logging/Logger;
            putstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.LOGGER:Lcom/mongodb/diagnostics/logging/Logger;
         1: .line 76
            new java.util.concurrent.atomic.AtomicInteger
            dup
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
            putstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.globalGroupCount:Ljava/util/concurrent/atomic/AtomicInteger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=3, args_size=2
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // int nThreads
         0: .line 222
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 165
            aload 0 /* this */
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.globalGroupCount:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.getAndIncrement:()I
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.id:I
         2: .line 171
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.loggedTaskWarning:Ljava/util/concurrent/atomic/AtomicBoolean;
         3: .line 177
            aload 0 /* this */
            new java.util.concurrent.ScheduledThreadPoolExecutor
            dup
            iconst_1
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$1
            dup
            aload 0 /* this */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$1.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;)V
            invokespecial java.util.concurrent.ScheduledThreadPoolExecutor.<init>:(ILjava/util/concurrent/ThreadFactory;)V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.timeoutExecutor:Ljava/util/concurrent/ScheduledThreadPoolExecutor;
         4: .line 185
            aload 0 /* this */
            new java.lang.Thread
            dup
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$2
            dup
            aload 0 /* this */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$2.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;)V
         5: .line 190
            ldc "async-channel-group-%d-selector"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.id:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
         6: .line 185
            invokespecial java.lang.Thread.<init>:(Ljava/lang/Runnable;Ljava/lang/String;)V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selectorThread:Ljava/lang/Thread;
         7: .line 192
            aload 0 /* this */
            new java.util.concurrent.ConcurrentLinkedQueue
            dup
            invokespecial java.util.concurrent.ConcurrentLinkedQueue.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.pendingRegistrations:Ljava/util/concurrent/ConcurrentLinkedQueue;
         8: .line 198
            aload 0 /* this */
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.No:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
         9: .line 200
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selectionCount:Ljava/util/concurrent/atomic/LongAdder;
        10: .line 202
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.startedReads:Ljava/util/concurrent/atomic/LongAdder;
        11: .line 203
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.startedWrites:Ljava/util/concurrent/atomic/LongAdder;
        12: .line 204
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.successfulReads:Ljava/util/concurrent/atomic/LongAdder;
        13: .line 205
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.successfulWrites:Ljava/util/concurrent/atomic/LongAdder;
        14: .line 206
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.failedReads:Ljava/util/concurrent/atomic/LongAdder;
        15: .line 207
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.failedWrites:Ljava/util/concurrent/atomic/LongAdder;
        16: .line 208
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.cancelledReads:Ljava/util/concurrent/atomic/LongAdder;
        17: .line 209
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.cancelledWrites:Ljava/util/concurrent/atomic/LongAdder;
        18: .line 212
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicInteger
            dup
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentRegistrations:Ljava/util/concurrent/atomic/AtomicInteger;
        19: .line 214
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentReads:Ljava/util/concurrent/atomic/LongAdder;
        20: .line 215
            aload 0 /* this */
            new java.util.concurrent.atomic.LongAdder
            dup
            invokespecial java.util.concurrent.atomic.LongAdder.<init>:()V
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentWrites:Ljava/util/concurrent/atomic/LongAdder;
        21: .line 224
            aload 0 /* this */
            invokestatic java.nio.channels.Selector.open:()Ljava/nio/channels/Selector;
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
        22: .line 225
            goto 25
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup int
      StackMap stack: java.io.IOException
        23: astore 2 /* e */
        start local 2 // java.io.IOException e
        24: .line 226
            new java.lang.RuntimeException
            dup
            aload 2 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException e
        25: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.timeoutExecutor:Ljava/util/concurrent/ScheduledThreadPoolExecutor;
            iconst_1
            invokevirtual java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy:(Z)V
        26: .line 229
            aload 0 /* this */
            new java.util.concurrent.ThreadPoolExecutor
            dup
        27: .line 230
            iload 1 /* nThreads */
            iload 1 /* nThreads */
        28: .line 231
            lconst_0
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
        29: .line 232
            new java.util.concurrent.LinkedBlockingQueue
            dup
            iload 1 /* nThreads */
            bipush 32
            imul
            invokespecial java.util.concurrent.LinkedBlockingQueue.<init>:(I)V
        30: .line 233
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$3
            dup
            aload 0 /* this */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$3.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;)V
        31: .line 239
            new java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy
            dup
            invokespecial java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy.<init>:()V
            invokespecial java.util.concurrent.ThreadPoolExecutor.<init>:(IIJLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/BlockingQueue;Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)V
        32: .line 229
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.executor:Ljava/util/concurrent/ExecutorService;
        33: .line 240
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selectorThread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.start:()V
        34: .line 241
            return
        end local 1 // int nThreads
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   35     0      this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0   35     1  nThreads  I
           24   25     2         e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          21    22      23  Class java.io.IOException
    MethodParameters:
          Name  Flags
      nThreads  final

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 247
            aload 0 /* this */
            invokestatic java.lang.Runtime.getRuntime:()Ljava/lang/Runtime;
            invokevirtual java.lang.Runtime.availableProcessors:()I
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.<init>:(I)V
         1: .line 248
            return
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket registerSocket(com.mongodb.internal.connection.tlschannel.TlsChannel, java.nio.channels.SocketChannel);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/TlsChannel;Ljava/nio/channels/SocketChannel;)Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.TlsChannel reader
        start local 2 // java.nio.channels.SocketChannel socketChannel
         0: .line 251
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.No:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            if_acmpeq 2
         1: .line 252
            new java.nio.channels.ShutdownChannelGroupException
            dup
            invokespecial java.nio.channels.ShutdownChannelGroupException.<init>:()V
            athrow
         2: .line 254
      StackMap locals:
      StackMap stack:
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket
            dup
            aload 0 /* this */
            aload 1 /* reader */
            aload 2 /* socketChannel */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;Lcom/mongodb/internal/connection/tlschannel/TlsChannel;Ljava/nio/channels/SocketChannel;)V
            astore 3 /* socket */
        start local 3 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
         3: .line 255
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentRegistrations:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.getAndIncrement:()I
            pop
         4: .line 256
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.pendingRegistrations:Ljava/util/concurrent/ConcurrentLinkedQueue;
            aload 3 /* socket */
            invokevirtual java.util.concurrent.ConcurrentLinkedQueue.add:(Ljava/lang/Object;)Z
            pop
         5: .line 257
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.wakeup:()Ljava/nio/channels/Selector;
            pop
         6: .line 258
            aload 3 /* socket */
            areturn
        end local 3 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 2 // java.nio.channels.SocketChannel socketChannel
        end local 1 // com.mongodb.internal.connection.tlschannel.TlsChannel reader
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0    7     1         reader  Lcom/mongodb/internal/connection/tlschannel/TlsChannel;
            0    7     2  socketChannel  Ljava/nio/channels/SocketChannel;
            3    7     3         socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
    MethodParameters:
               Name  Flags
      reader         final
      socketChannel  final

  boolean doCancelRead(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket, com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        start local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
         0: .line 262
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 265
            aload 2 /* op */
            ifnull 2
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
            aload 2 /* op */
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: aload 2 /* op */
            ifnonnull 8
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
            ifnull 8
         3: .line 266
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            aconst_null
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
         4: .line 267
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.cancelledReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
         5: .line 268
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.decrement:()V
         6: .line 274
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         7: .line 269
            iconst_1
            ireturn
         8: .line 274
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         9: .line 271
            iconst_0
            ireturn
        10: .line 273
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3
        11: .line 274
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        12: .line 275
            aload 3
            athrow
        end local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0   13     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            0   13     2      op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
      Exception table:
        from    to  target  type
           1     6      10  any
    MethodParameters:
        Name  Flags
      socket  final
      op      final

  boolean doCancelWrite(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket, com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        start local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
         0: .line 279
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 282
            aload 2 /* op */
            ifnull 2
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
            aload 2 /* op */
            if_acmpeq 3
      StackMap locals:
      StackMap stack:
         2: aload 2 /* op */
            ifnonnull 8
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
            ifnull 8
         3: .line 283
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            aconst_null
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
         4: .line 284
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.cancelledWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
         5: .line 285
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.decrement:()V
         6: .line 291
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         7: .line 286
            iconst_1
            ireturn
         8: .line 291
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         9: .line 288
            iconst_0
            ireturn
        10: .line 290
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3
        11: .line 291
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        12: .line 292
            aload 3
            athrow
        end local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0   13     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            0   13     2      op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
      Exception table:
        from    to  target  type
           1     6      10  any
    MethodParameters:
        Name  Flags
      socket  final
      op      final

  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation startRead(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket, com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet, long, java.util.concurrent.TimeUnit, java.util.function.LongConsumer, java.util.function.Consumer<java.lang.Throwable>);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;JLjava/util/concurrent/TimeUnit;Ljava/util/function/LongConsumer;Ljava/util/function/Consumer;)Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
    flags: (0x0000) 
    Code:
      stack=7, locals=11, args_size=7
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        start local 2 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet buffer
        start local 3 // long timeout
        start local 5 // java.util.concurrent.TimeUnit unit
        start local 6 // java.util.function.LongConsumer onSuccess
        start local 7 // java.util.function.Consumer onFailure
         0: .line 301
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.checkTerminated:()V
         1: .line 302
            aload 2 /* buffer */
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.hasRemaining:()Z
            invokestatic com.mongodb.internal.connection.tlschannel.util.Util.assertTrue:(Z)V
         2: .line 303
            aload 0 /* this */
            aload 1 /* socket */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.waitForSocketRegistration:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;)V
         3: .line 305
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         4: .line 307
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
            ifnull 6
         5: .line 308
            new java.nio.channels.ReadPendingException
            dup
            invokespecial java.nio.channels.ReadPendingException.<init>:()V
            athrow
         6: .line 310
      StackMap locals:
      StackMap stack:
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation
            dup
            aload 2 /* buffer */
            aload 6 /* onSuccess */
            aload 7 /* onFailure */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.<init>:(Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;Ljava/util/function/LongConsumer;Ljava/util/function/Consumer;)V
            astore 8 /* op */
        start local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
         7: .line 311
            aload 8 /* op */
            astore 9 /* finalOp */
        start local 9 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation finalOp
         8: .line 316
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.pendingOps:Ljava/util/concurrent/atomic/AtomicInteger;
            iconst_5
            invokevirtual java.util.concurrent.atomic.AtomicInteger.set:(I)V
         9: .line 317
            lload 3 /* timeout */
            lconst_0
            lcmp
            ifeq 13
        10: .line 318
            aload 8 /* op */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.timeoutExecutor:Ljava/util/concurrent/ScheduledThreadPoolExecutor;
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$4
            dup
            aload 0 /* this */
            aload 1 /* socket */
            aload 9 /* finalOp */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$4.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;)V
        11: .line 326
            lload 3 /* timeout */
            aload 5 /* unit */
        12: .line 318
            invokevirtual java.util.concurrent.ScheduledThreadPoolExecutor.schedule:(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.timeoutFuture:Ljava/util/concurrent/Future;
        13: .line 328
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation
      StackMap stack:
            aload 1 /* socket */
            aload 8 /* op */
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
        end local 9 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation finalOp
        14: .line 329
            goto 18
        end local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet long java.util.concurrent.TimeUnit java.util.function.LongConsumer java.util.function.Consumer
      StackMap stack: java.lang.Throwable
        15: astore 10
        16: .line 330
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        17: .line 331
            aload 10
            athrow
        start local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
        18: .line 330
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        19: .line 332
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.wakeup:()Ljava/nio/channels/Selector;
            pop
        20: .line 333
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.startedReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
        21: .line 334
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
        22: .line 335
            aload 8 /* op */
            areturn
        end local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
        end local 7 // java.util.function.Consumer onFailure
        end local 6 // java.util.function.LongConsumer onSuccess
        end local 5 // java.util.concurrent.TimeUnit unit
        end local 3 // long timeout
        end local 2 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet buffer
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0   23     1     socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            0   23     2     buffer  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            0   23     3    timeout  J
            0   23     5       unit  Ljava/util/concurrent/TimeUnit;
            0   23     6  onSuccess  Ljava/util/function/LongConsumer;
            0   23     7  onFailure  Ljava/util/function/Consumer<Ljava/lang/Throwable;>;
            7   15     8         op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
           18   23     8         op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
            8   14     9    finalOp  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
      Exception table:
        from    to  target  type
           4    15      15  any
    Exceptions:
      throws java.nio.channels.ReadPendingException
    Signature: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;JLjava/util/concurrent/TimeUnit;Ljava/util/function/LongConsumer;Ljava/util/function/Consumer<Ljava/lang/Throwable;>;)Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
    MethodParameters:
           Name  Flags
      socket     final
      buffer     final
      timeout    final
      unit       final
      onSuccess  final
      onFailure  final

  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation startWrite(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket, com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet, long, java.util.concurrent.TimeUnit, java.util.function.LongConsumer, java.util.function.Consumer<java.lang.Throwable>);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;JLjava/util/concurrent/TimeUnit;Ljava/util/function/LongConsumer;Ljava/util/function/Consumer;)Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
    flags: (0x0000) 
    Code:
      stack=7, locals=11, args_size=7
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        start local 2 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet buffer
        start local 3 // long timeout
        start local 5 // java.util.concurrent.TimeUnit unit
        start local 6 // java.util.function.LongConsumer onSuccess
        start local 7 // java.util.function.Consumer onFailure
         0: .line 344
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.checkTerminated:()V
         1: .line 345
            aload 2 /* buffer */
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.hasRemaining:()Z
            invokestatic com.mongodb.internal.connection.tlschannel.util.Util.assertTrue:(Z)V
         2: .line 346
            aload 0 /* this */
            aload 1 /* socket */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.waitForSocketRegistration:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;)V
         3: .line 348
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         4: .line 350
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
            ifnull 6
         5: .line 351
            new java.nio.channels.WritePendingException
            dup
            invokespecial java.nio.channels.WritePendingException.<init>:()V
            athrow
         6: .line 353
      StackMap locals:
      StackMap stack:
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation
            dup
            aload 2 /* buffer */
            aload 6 /* onSuccess */
            aload 7 /* onFailure */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.<init>:(Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;Ljava/util/function/LongConsumer;Ljava/util/function/Consumer;)V
            astore 8 /* op */
        start local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
         7: .line 354
            aload 8 /* op */
            astore 9 /* finalOp */
        start local 9 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation finalOp
         8: .line 359
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.pendingOps:Ljava/util/concurrent/atomic/AtomicInteger;
            iconst_5
            invokevirtual java.util.concurrent.atomic.AtomicInteger.set:(I)V
         9: .line 360
            lload 3 /* timeout */
            lconst_0
            lcmp
            ifeq 13
        10: .line 361
            aload 8 /* op */
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.timeoutExecutor:Ljava/util/concurrent/ScheduledThreadPoolExecutor;
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$5
            dup
            aload 0 /* this */
            aload 1 /* socket */
            aload 9 /* finalOp */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$5.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;)V
        11: .line 369
            lload 3 /* timeout */
            aload 5 /* unit */
        12: .line 361
            invokevirtual java.util.concurrent.ScheduledThreadPoolExecutor.schedule:(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.timeoutFuture:Ljava/util/concurrent/Future;
        13: .line 371
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation
      StackMap stack:
            aload 1 /* socket */
            aload 8 /* op */
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
        end local 9 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation finalOp
        14: .line 372
            goto 18
        end local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet long java.util.concurrent.TimeUnit java.util.function.LongConsumer java.util.function.Consumer
      StackMap stack: java.lang.Throwable
        15: astore 10
        16: .line 373
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        17: .line 374
            aload 10
            athrow
        start local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
        18: .line 373
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        19: .line 375
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.wakeup:()Ljava/nio/channels/Selector;
            pop
        20: .line 376
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.startedWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
        21: .line 377
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
        22: .line 378
            aload 8 /* op */
            areturn
        end local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
        end local 7 // java.util.function.Consumer onFailure
        end local 6 // java.util.function.LongConsumer onSuccess
        end local 5 // java.util.concurrent.TimeUnit unit
        end local 3 // long timeout
        end local 2 // com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet buffer
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0   23     1     socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            0   23     2     buffer  Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            0   23     3    timeout  J
            0   23     5       unit  Ljava/util/concurrent/TimeUnit;
            0   23     6  onSuccess  Ljava/util/function/LongConsumer;
            0   23     7  onFailure  Ljava/util/function/Consumer<Ljava/lang/Throwable;>;
            7   15     8         op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
           18   23     8         op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
            8   14     9    finalOp  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
      Exception table:
        from    to  target  type
           4    15      15  any
    Exceptions:
      throws java.nio.channels.WritePendingException
    Signature: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;JLjava/util/concurrent/TimeUnit;Ljava/util/function/LongConsumer;Ljava/util/function/Consumer<Ljava/lang/Throwable;>;)Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
    MethodParameters:
           Name  Flags
      socket     final
      buffer     final
      timeout    final
      unit       final
      onSuccess  final
      onFailure  final

  private void checkTerminated();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 382
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.isTerminated:()Z
            ifeq 2
         1: .line 383
            new java.nio.channels.ShutdownChannelGroupException
            dup
            invokespecial java.nio.channels.ShutdownChannelGroupException.<init>:()V
            athrow
         2: .line 385
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  private void waitForSocketRegistration(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
         0: .line 389
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.registered:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.await:()V
         1: .line 390
            goto 4
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
         2: astore 2 /* e */
        start local 2 // java.lang.InterruptedException e
         3: .line 391
            new java.lang.RuntimeException
            dup
            aload 2 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.InterruptedException e
         4: .line 393
      StackMap locals:
      StackMap stack:
            return
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0    5     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            3    4     2       e  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.InterruptedException
    MethodParameters:
        Name  Flags
      socket  final

  private void loop();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=9, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 397
            goto 18
         1: .line 398
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.select:()I
            istore 1 /* c */
        start local 1 // int c
         2: .line 399
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selectionCount:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
         3: .line 401
            iload 1 /* c */
            ifle 16
         4: .line 402
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.selectedKeys:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         5: .line 403
            goto 15
         6: .line 404
      StackMap locals: int java.util.Iterator
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.channels.SelectionKey
            astore 3 /* key */
        start local 3 // java.nio.channels.SelectionKey key
         7: .line 405
            aload 2 /* it */
            invokeinterface java.util.Iterator.remove:()V
         8: .line 407
            aload 3 /* key */
            iconst_0
            invokevirtual java.nio.channels.SelectionKey.interestOps:(I)Ljava/nio/channels/SelectionKey;
            pop
         9: .line 408
            goto 12
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup int java.util.Iterator java.nio.channels.SelectionKey
      StackMap stack: java.nio.channels.CancelledKeyException
        10: pop
        11: .line 410
            goto 15
        12: .line 412
      StackMap locals:
      StackMap stack:
            aload 3 /* key */
            invokevirtual java.nio.channels.SelectionKey.attachment:()Ljava/lang/Object;
            checkcast com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket
            astore 4 /* socket */
        start local 4 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        13: .line 413
            aload 0 /* this */
            aload 4 /* socket */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.processRead:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;)V
        14: .line 414
            aload 0 /* this */
            aload 4 /* socket */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.processWrite:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;)V
        end local 4 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 3 // java.nio.channels.SelectionKey key
        15: .line 403
      StackMap locals:
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        end local 2 // java.util.Iterator it
        16: .line 417
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.registerPendingSockets:()V
        17: .line 418
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.processPendingInterests:()V
        end local 1 // int c
        18: .line 397
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.No:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            if_acmpeq 1
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.Wait:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            if_acmpne 49
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentRegistrations:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.intValue:()I
            ifgt 1
        19: .line 420
            goto 49
      StackMap locals:
      StackMap stack: java.lang.Throwable
        20: astore 1 /* e */
        start local 1 // java.lang.Throwable e
        21: .line 421
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.LOGGER:Lcom/mongodb/diagnostics/logging/Logger;
            ldc "error in selector loop"
            aload 1 /* e */
            invokeinterface com.mongodb.diagnostics.logging.Logger.error:(Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable e
        22: .line 423
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.executor:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.shutdown:()V
        23: .line 425
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.timeoutExecutor:Ljava/util/concurrent/ScheduledThreadPoolExecutor;
            invokevirtual java.util.concurrent.ScheduledThreadPoolExecutor.shutdownNow:()Ljava/util/List;
            pop
        24: .line 426
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.Immediate:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            if_acmpne 30
        25: .line 427
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.keys:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 7
            goto 29
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup top top top top top top java.util.Iterator
      StackMap stack:
        26: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.channels.SelectionKey
            astore 6 /* key */
        start local 6 // java.nio.channels.SelectionKey key
        27: .line 428
            aload 6 /* key */
            invokevirtual java.nio.channels.SelectionKey.attachment:()Ljava/lang/Object;
            checkcast com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket
            astore 8 /* socket */
        start local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        28: .line 429
            aload 8 /* socket */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.close:()V
        end local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 6 // java.nio.channels.SelectionKey key
        29: .line 427
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 26
        30: .line 433
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.close:()V
        31: .line 434
            goto 61
      StackMap locals:
      StackMap stack: java.io.IOException
        32: astore 6 /* e */
        start local 6 // java.io.IOException e
        33: .line 435
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.LOGGER:Lcom/mongodb/diagnostics/logging/Logger;
            ldc "error closing selector: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 6 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface com.mongodb.diagnostics.logging.Logger.warn:(Ljava/lang/String;)V
        end local 6 // java.io.IOException e
        34: goto 61
        35: .line 422
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
        36: .line 423
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.executor:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.shutdown:()V
        37: .line 425
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.timeoutExecutor:Ljava/util/concurrent/ScheduledThreadPoolExecutor;
            invokevirtual java.util.concurrent.ScheduledThreadPoolExecutor.shutdownNow:()Ljava/util/List;
            pop
        38: .line 426
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.Immediate:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            if_acmpne 44
        39: .line 427
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.keys:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 7
            goto 43
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup top top top top java.lang.Throwable top java.util.Iterator
      StackMap stack:
        40: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.channels.SelectionKey
            astore 6 /* key */
        start local 6 // java.nio.channels.SelectionKey key
        41: .line 428
            aload 6 /* key */
            invokevirtual java.nio.channels.SelectionKey.attachment:()Ljava/lang/Object;
            checkcast com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket
            astore 8 /* socket */
        start local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        42: .line 429
            aload 8 /* socket */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.close:()V
        end local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 6 // java.nio.channels.SelectionKey key
        43: .line 427
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 40
        44: .line 433
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup top top top top java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.close:()V
        45: .line 434
            goto 48
      StackMap locals:
      StackMap stack: java.io.IOException
        46: astore 6 /* e */
        start local 6 // java.io.IOException e
        47: .line 435
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.LOGGER:Lcom/mongodb/diagnostics/logging/Logger;
            ldc "error closing selector: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 6 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface com.mongodb.diagnostics.logging.Logger.warn:(Ljava/lang/String;)V
        end local 6 // java.io.IOException e
        48: .line 437
      StackMap locals:
      StackMap stack:
            aload 5
            athrow
        49: .line 423
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.executor:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.shutdown:()V
        50: .line 425
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.timeoutExecutor:Ljava/util/concurrent/ScheduledThreadPoolExecutor;
            invokevirtual java.util.concurrent.ScheduledThreadPoolExecutor.shutdownNow:()Ljava/util/List;
            pop
        51: .line 426
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.Immediate:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            if_acmpne 57
        52: .line 427
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.keys:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 7
            goto 56
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup top top top top top top java.util.Iterator
      StackMap stack:
        53: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.channels.SelectionKey
            astore 6 /* key */
        start local 6 // java.nio.channels.SelectionKey key
        54: .line 428
            aload 6 /* key */
            invokevirtual java.nio.channels.SelectionKey.attachment:()Ljava/lang/Object;
            checkcast com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket
            astore 8 /* socket */
        start local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        55: .line 429
            aload 8 /* socket */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.close:()V
        end local 8 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 6 // java.nio.channels.SelectionKey key
        56: .line 427
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 53
        57: .line 433
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.close:()V
        58: .line 434
            goto 61
      StackMap locals:
      StackMap stack: java.io.IOException
        59: astore 6 /* e */
        start local 6 // java.io.IOException e
        60: .line 435
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.LOGGER:Lcom/mongodb/diagnostics/logging/Logger;
            ldc "error closing selector: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 6 /* e */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface com.mongodb.diagnostics.logging.Logger.warn:(Ljava/lang/String;)V
        end local 6 // java.io.IOException e
        61: .line 438
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   62     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            2   18     1       c  I
            5   16     2      it  Ljava/util/Iterator<Ljava/nio/channels/SelectionKey;>;
            7   15     3     key  Ljava/nio/channels/SelectionKey;
           13   15     4  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
           21   22     1       e  Ljava/lang/Throwable;
           27   29     6     key  Ljava/nio/channels/SelectionKey;
           41   43     6     key  Ljava/nio/channels/SelectionKey;
           54   56     6     key  Ljava/nio/channels/SelectionKey;
           28   29     8  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
           42   43     8  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
           55   56     8  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
           33   34     6       e  Ljava/io/IOException;
           47   48     6       e  Ljava/io/IOException;
           60   61     6       e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           8     9      10  Class java.nio.channels.CancelledKeyException
           0    19      20  Class java.lang.Throwable
          30    31      32  Class java.io.IOException
           0    22      35  any
          44    45      46  Class java.io.IOException
          57    58      59  Class java.io.IOException

  private void processPendingInterests();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 441
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.keys:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2
            goto 6
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.channels.SelectionKey
            astore 1 /* key */
        start local 1 // java.nio.channels.SelectionKey key
         2: .line 442
            aload 1 /* key */
            invokevirtual java.nio.channels.SelectionKey.attachment:()Ljava/lang/Object;
            checkcast com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket
            astore 3 /* socket */
        start local 3 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
         3: .line 443
            aload 3 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.pendingOps:Ljava/util/concurrent/atomic/AtomicInteger;
            iconst_0
            invokevirtual java.util.concurrent.atomic.AtomicInteger.getAndSet:(I)I
            istore 4 /* pending */
        start local 4 // int pending
         4: .line 444
            iload 4 /* pending */
            ifeq 6
         5: .line 445
            aload 1 /* key */
            aload 1 /* key */
            invokevirtual java.nio.channels.SelectionKey.interestOps:()I
            iload 4 /* pending */
            ior
            invokevirtual java.nio.channels.SelectionKey.interestOps:(I)Ljava/nio/channels/SelectionKey;
            pop
        end local 4 // int pending
        end local 3 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 1 // java.nio.channels.SelectionKey key
         6: .line 441
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         7: .line 448
            return
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            2    6     1      key  Ljava/nio/channels/SelectionKey;
            3    6     3   socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            4    6     4  pending  I

  private void processWrite(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
         0: .line 451
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 453
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
            astore 2 /* op */
        start local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
         2: .line 454
            aload 2 /* op */
            ifnull 8
         3: .line 455
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.executor:Ljava/util/concurrent/ExecutorService;
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$6
            dup
            aload 0 /* this */
            aload 1 /* socket */
            aload 2 /* op */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$6.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;)V
            invokeinterface java.util.concurrent.ExecutorService.execute:(Ljava/lang/Runnable;)V
        end local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
         4: .line 466
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 3
         6: .line 467
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         7: .line 468
            aload 3
            athrow
         8: .line 467
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         9: .line 469
            return
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0   10     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            2    4     2      op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
      Exception table:
        from    to  target  type
           1     5       5  any
    MethodParameters:
        Name  Flags
      socket  final

  private void processRead(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
         0: .line 472
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 474
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
            astore 2 /* op */
        start local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
         2: .line 475
            aload 2 /* op */
            ifnull 8
         3: .line 476
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.executor:Ljava/util/concurrent/ExecutorService;
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$7
            dup
            aload 0 /* this */
            aload 1 /* socket */
            aload 2 /* op */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$7.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;)V
            invokeinterface java.util.concurrent.ExecutorService.execute:(Ljava/lang/Runnable;)V
        end local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
         4: .line 487
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 3
         6: .line 488
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         7: .line 489
            aload 3
            athrow
         8: .line 488
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         9: .line 490
            return
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0   10     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            2    4     2      op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
      Exception table:
        from    to  target  type
           1     5       5  any
    MethodParameters:
        Name  Flags
      socket  final

  private void doWrite(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket, com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        start local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
         0: .line 493
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 495
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
            aload 2 /* op */
            if_acmpeq 4
         2: .line 542
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         3: .line 496
            return
         4: .line 499
      StackMap locals:
      StackMap stack:
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.remaining:()J
            lstore 3 /* before */
        start local 3 // long before
         5: .line 501
            aload 0 /* this */
            aload 1 /* socket */
            aload 2 /* op */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.writeHandlingTasks:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;)V
         6: .line 502
            goto 14
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation long
      StackMap stack: java.lang.Throwable
         7: astore 5
         8: .line 503
            lload 3 /* before */
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.remaining:()J
            lsub
            lstore 6 /* c */
        start local 6 // long c
         9: .line 504
            lload 6 /* c */
            lconst_0
            lcmp
            iflt 10
            iconst_1
            goto 11
      StackMap locals: java.lang.Throwable long
      StackMap stack:
        10: iconst_0
      StackMap locals:
      StackMap stack: int
        11: invokestatic com.mongodb.internal.connection.tlschannel.util.Util.assertTrue:(Z)V
        12: .line 505
            aload 2 /* op */
            dup
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.consumesBytes:J
            lload 6 /* c */
            ladd
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.consumesBytes:J
        end local 6 // long c
        13: .line 506
            aload 5
            athrow
        14: .line 503
      StackMap locals:
      StackMap stack:
            lload 3 /* before */
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.remaining:()J
            lsub
            lstore 6 /* c */
        start local 6 // long c
        15: .line 504
            lload 6 /* c */
            lconst_0
            lcmp
            iflt 16
            iconst_1
            goto 17
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation long top long
      StackMap stack:
        16: iconst_0
      StackMap locals:
      StackMap stack: int
        17: invokestatic com.mongodb.internal.connection.tlschannel.util.Util.assertTrue:(Z)V
        18: .line 505
            aload 2 /* op */
            dup
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.consumesBytes:J
            lload 6 /* c */
            ladd
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.consumesBytes:J
        end local 6 // long c
        19: .line 507
            aload 1 /* socket */
            aconst_null
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
        20: .line 508
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.timeoutFuture:Ljava/util/concurrent/Future;
            ifnull 22
        21: .line 509
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.timeoutFuture:Ljava/util/concurrent/Future;
            iconst_0
            invokeinterface java.util.concurrent.Future.cancel:(Z)Z
            pop
        22: .line 511
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation long
      StackMap stack:
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.onSuccess:Ljava/util/function/LongConsumer;
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.consumesBytes:J
            invokeinterface java.util.function.LongConsumer.accept:(J)V
        23: .line 512
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.successfulWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
        24: .line 513
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.decrement:()V
        end local 3 // long before
        25: .line 514
            goto 44
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation
      StackMap stack: com.mongodb.internal.connection.tlschannel.NeedsReadException
        26: pop
        27: .line 515
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.pendingOps:Ljava/util/concurrent/atomic/AtomicInteger;
            iconst_1
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$8
            dup
            aload 0 /* this */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$8.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;)V
            invokevirtual java.util.concurrent.atomic.AtomicInteger.accumulateAndGet:(ILjava/util/function/IntBinaryOperator;)I
            pop
        28: .line 521
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.wakeup:()Ljava/nio/channels/Selector;
            pop
            goto 44
        29: .line 522
      StackMap locals:
      StackMap stack: com.mongodb.internal.connection.tlschannel.NeedsWriteException
            pop
        30: .line 523
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.pendingOps:Ljava/util/concurrent/atomic/AtomicInteger;
            iconst_4
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$9
            dup
            aload 0 /* this */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$9.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;)V
            invokevirtual java.util.concurrent.atomic.AtomicInteger.accumulateAndGet:(ILjava/util/function/IntBinaryOperator;)I
            pop
        31: .line 529
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.wakeup:()Ljava/nio/channels/Selector;
            pop
            goto 44
        32: .line 530
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 3 /* e */
        start local 3 // java.io.IOException e
        33: .line 531
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
            aload 2 /* op */
            if_acmpne 35
        34: .line 532
            aload 1 /* socket */
            aconst_null
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
        35: .line 534
      StackMap locals: java.io.IOException
      StackMap stack:
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.timeoutFuture:Ljava/util/concurrent/Future;
            ifnull 37
        36: .line 535
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.timeoutFuture:Ljava/util/concurrent/Future;
            iconst_0
            invokeinterface java.util.concurrent.Future.cancel:(Z)Z
            pop
        37: .line 537
      StackMap locals:
      StackMap stack:
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.onFailure:Ljava/util/function/Consumer;
            aload 3 /* e */
            invokeinterface java.util.function.Consumer.accept:(Ljava/lang/Object;)V
        38: .line 538
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.failedWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
        39: .line 539
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.decrement:()V
        end local 3 // java.io.IOException e
        40: .line 541
            goto 44
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation
      StackMap stack: java.lang.Throwable
        41: astore 8
        42: .line 542
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        43: .line 543
            aload 8
            athrow
        44: .line 542
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.writeLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        45: .line 544
            return
        end local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   46     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0   46     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            0   46     2      op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
            5   25     3  before  J
            9   13     6       c  J
           15   19     6       c  J
           33   40     3       e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           5     7       7  any
           4    25      26  Class com.mongodb.internal.connection.tlschannel.NeedsReadException
           4    25      29  Class com.mongodb.internal.connection.tlschannel.NeedsWriteException
           4    25      32  Class java.io.IOException
           1     2      41  any
           4    41      41  any
    MethodParameters:
        Name  Flags
      socket  final
      op      final

  private void writeHandlingTasks(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket, com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        start local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
         0: .line 553
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.tlsChannel:Lcom/mongodb/internal/connection/tlschannel/TlsChannel;
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
            invokeinterface com.mongodb.internal.connection.tlschannel.TlsChannel.write:([Ljava/nio/ByteBuffer;II)J
            pop2
         1: .line 554
            return
         2: .line 555
      StackMap locals:
      StackMap stack: com.mongodb.internal.connection.tlschannel.NeedsTaskException
            astore 3 /* e */
        start local 3 // com.mongodb.internal.connection.tlschannel.NeedsTaskException e
         3: .line 556
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.warnAboutNeedTask:()V
         4: .line 557
            aload 3 /* e */
            invokevirtual com.mongodb.internal.connection.tlschannel.NeedsTaskException.getTask:()Ljava/lang/Runnable;
            invokeinterface java.lang.Runnable.run:()V
        end local 3 // com.mongodb.internal.connection.tlschannel.NeedsTaskException e
         5: .line 551
            goto 0
        end local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation op
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0    6     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            0    6     2      op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$WriteOperation;
            3    5     3       e  Lcom/mongodb/internal/connection/tlschannel/NeedsTaskException;
      Exception table:
        from    to  target  type
           0     1       2  Class com.mongodb.internal.connection.tlschannel.NeedsTaskException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      socket  final
      op      final

  private void warnAboutNeedTask();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 563
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.loggedTaskWarning:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.getAndSet:(Z)Z
            ifne 5
         1: .line 564
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.LOGGER:Lcom/mongodb/diagnostics/logging/Logger;
         2: .line 565
            ldc "caught %s; channels used in asynchronous groups should run tasks themselves; although task is being dealt with anyway, consider configuring channels properly"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
         3: .line 567
            ldc Lcom/mongodb/internal/connection/tlschannel/NeedsTaskException;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
         4: .line 564
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface com.mongodb.diagnostics.logging.Logger.warn:(Ljava/lang/String;)V
         5: .line 569
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  private void doRead(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket, com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        start local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
         0: .line 572
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 574
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
            aload 2 /* op */
            if_acmpeq 4
         2: .line 616
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         3: .line 575
            return
         4: .line 578
      StackMap locals:
      StackMap stack:
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            invokevirtual com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.hasRemaining:()Z
            invokestatic com.mongodb.internal.connection.tlschannel.util.Util.assertTrue:(Z)V
         5: .line 579
            aload 0 /* this */
            aload 1 /* socket */
            aload 2 /* op */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.readHandlingTasks:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;)J
            lstore 3 /* c */
        start local 3 // long c
         6: .line 580
            lload 3 /* c */
            lconst_0
            lcmp
            ifgt 7
            lload 3 /* c */
            ldc -1
            lcmp
            ifeq 7
            iconst_0
            goto 8
      StackMap locals: long
      StackMap stack:
         7: iconst_1
      StackMap locals:
      StackMap stack: int
         8: invokestatic com.mongodb.internal.connection.tlschannel.util.Util.assertTrue:(Z)V
         9: .line 581
            aload 1 /* socket */
            aconst_null
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
        10: .line 582
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.timeoutFuture:Ljava/util/concurrent/Future;
            ifnull 12
        11: .line 583
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.timeoutFuture:Ljava/util/concurrent/Future;
            iconst_0
            invokeinterface java.util.concurrent.Future.cancel:(Z)Z
            pop
        12: .line 585
      StackMap locals:
      StackMap stack:
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.onSuccess:Ljava/util/function/LongConsumer;
            lload 3 /* c */
            invokeinterface java.util.function.LongConsumer.accept:(J)V
        13: .line 586
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.successfulReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
        14: .line 587
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.decrement:()V
        end local 3 // long c
        15: .line 588
            goto 34
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation
      StackMap stack: com.mongodb.internal.connection.tlschannel.NeedsReadException
        16: pop
        17: .line 589
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.pendingOps:Ljava/util/concurrent/atomic/AtomicInteger;
            iconst_1
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$10
            dup
            aload 0 /* this */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$10.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;)V
            invokevirtual java.util.concurrent.atomic.AtomicInteger.accumulateAndGet:(ILjava/util/function/IntBinaryOperator;)I
            pop
        18: .line 595
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.wakeup:()Ljava/nio/channels/Selector;
            pop
            goto 34
        19: .line 596
      StackMap locals:
      StackMap stack: com.mongodb.internal.connection.tlschannel.NeedsWriteException
            pop
        20: .line 597
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.pendingOps:Ljava/util/concurrent/atomic/AtomicInteger;
            iconst_4
            new com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$11
            dup
            aload 0 /* this */
            invokespecial com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$11.<init>:(Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;)V
            invokevirtual java.util.concurrent.atomic.AtomicInteger.accumulateAndGet:(ILjava/util/function/IntBinaryOperator;)I
            pop
        21: .line 603
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.wakeup:()Ljava/nio/channels/Selector;
            pop
            goto 34
        22: .line 604
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 3 /* e */
        start local 3 // java.io.IOException e
        23: .line 605
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
            aload 2 /* op */
            if_acmpne 25
        24: .line 606
            aload 1 /* socket */
            aconst_null
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readOperation:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
        25: .line 608
      StackMap locals: java.io.IOException
      StackMap stack:
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.timeoutFuture:Ljava/util/concurrent/Future;
            ifnull 27
        26: .line 609
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.timeoutFuture:Ljava/util/concurrent/Future;
            iconst_0
            invokeinterface java.util.concurrent.Future.cancel:(Z)Z
            pop
        27: .line 611
      StackMap locals:
      StackMap stack:
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.onFailure:Ljava/util/function/Consumer;
            aload 3 /* e */
            invokeinterface java.util.function.Consumer.accept:(Ljava/lang/Object;)V
        28: .line 612
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.failedReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.increment:()V
        29: .line 613
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.decrement:()V
        end local 3 // java.io.IOException e
        30: .line 615
            goto 34
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation
      StackMap stack: java.lang.Throwable
        31: astore 5
        32: .line 616
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        33: .line 617
            aload 5
            athrow
        34: .line 616
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.readLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        35: .line 618
            return
        end local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   36     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0   36     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            0   36     2      op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
            6   15     3       c  J
           23   30     3       e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           4    15      16  Class com.mongodb.internal.connection.tlschannel.NeedsReadException
           4    15      19  Class com.mongodb.internal.connection.tlschannel.NeedsWriteException
           4    15      22  Class java.io.IOException
           1     2      31  any
           4    31      31  any
    MethodParameters:
        Name  Flags
      socket  final
      op      final

  private long readHandlingTasks(com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket, com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation);
    descriptor: (Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;)J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        start local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
         0: .line 626
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.tlsChannel:Lcom/mongodb/internal/connection/tlschannel/TlsChannel;
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.array:[Ljava/nio/ByteBuffer;
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.offset:I
            aload 2 /* op */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation.bufferSet:Lcom/mongodb/internal/connection/tlschannel/impl/ByteBufferSet;
            getfield com.mongodb.internal.connection.tlschannel.impl.ByteBufferSet.length:I
            invokeinterface com.mongodb.internal.connection.tlschannel.TlsChannel.read:([Ljava/nio/ByteBuffer;II)J
         1: lreturn
         2: .line 627
      StackMap locals:
      StackMap stack: com.mongodb.internal.connection.tlschannel.NeedsTaskException
            astore 3 /* e */
        start local 3 // com.mongodb.internal.connection.tlschannel.NeedsTaskException e
         3: .line 628
            aload 0 /* this */
            invokevirtual com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.warnAboutNeedTask:()V
         4: .line 629
            aload 3 /* e */
            invokevirtual com.mongodb.internal.connection.tlschannel.NeedsTaskException.getTask:()Ljava/lang/Runnable;
            invokeinterface java.lang.Runnable.run:()V
        end local 3 // com.mongodb.internal.connection.tlschannel.NeedsTaskException e
         5: .line 624
            goto 0
        end local 2 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation op
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0    6     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            0    6     2      op  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$ReadOperation;
            3    5     3       e  Lcom/mongodb/internal/connection/tlschannel/NeedsTaskException;
      Exception table:
        from    to  target  type
           0     1       2  Class com.mongodb.internal.connection.tlschannel.NeedsTaskException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      socket  final
      op      final

  private void registerPendingSockets();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 636
            goto 5
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
         1: .line 637
      StackMap locals: com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket
      StackMap stack:
            aload 1 /* socket */
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.socketChannel:Ljava/nio/channels/SocketChannel;
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            iconst_0
            aload 1 /* socket */
            invokevirtual java.nio.channels.SocketChannel.register:(Ljava/nio/channels/Selector;ILjava/lang/Object;)Ljava/nio/channels/SelectionKey;
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.key:Ljava/nio/channels/SelectionKey;
         2: .line 638
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.LOGGER:Lcom/mongodb/diagnostics/logging/Logger;
            invokeinterface com.mongodb.diagnostics.logging.Logger.isTraceEnabled:()Z
            ifeq 4
         3: .line 639
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.LOGGER:Lcom/mongodb/diagnostics/logging/Logger;
            ldc "registered key: %ss"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.key:Ljava/nio/channels/SelectionKey;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokeinterface com.mongodb.diagnostics.logging.Logger.trace:(Ljava/lang/String;)V
         4: .line 641
      StackMap locals:
      StackMap stack:
            aload 1 /* socket */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket.registered:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
         5: .line 636
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.pendingRegistrations:Ljava/util/concurrent/ConcurrentLinkedQueue;
            invokevirtual java.util.concurrent.ConcurrentLinkedQueue.poll:()Ljava/lang/Object;
            checkcast com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket
            dup
            astore 1 /* socket */
        start local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
         6: ifnonnull 1
         7: .line 643
            return
        end local 1 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket socket
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            1    5     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
            6    8     1  socket  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$RegisteredSocket;
    Exceptions:
      throws java.nio.channels.ClosedChannelException

  public boolean isShutdown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 651
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.No:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            if_acmpeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public void shutdown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 659
            aload 0 /* this */
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.Wait:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
         1: .line 660
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.wakeup:()Ljava/nio/channels/Selector;
            pop
         2: .line 661
            return
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public void shutdownNow();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 668
            aload 0 /* this */
            getstatic com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown.Immediate:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
            putfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.shutdown:Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup$Shutdown;
         1: .line 669
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selector:Ljava/nio/channels/Selector;
            invokevirtual java.nio.channels.Selector.wakeup:()Ljava/nio/channels/Selector;
            pop
         2: .line 670
            return
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public boolean isTerminated();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 676
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.executor:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.isTerminated:()Z
            ireturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public boolean awaitTermination(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 689
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.executor:Ljava/util/concurrent/ExecutorService;
            lload 1 /* timeout */
            aload 3 /* unit */
            invokeinterface java.util.concurrent.ExecutorService.awaitTermination:(JLjava/util/concurrent/TimeUnit;)Z
            ireturn
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
            0    1     1  timeout  J
            0    1     3     unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.lang.InterruptedException
    MethodParameters:
         Name  Flags
      timeout  final
      unit     final

  long getSelectionCount();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 693
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.selectionCount:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getStartedReadCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 702
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.startedReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getStartedWriteCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 711
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.startedWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getSuccessfulReadCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 720
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.successfulReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getSuccessfulWriteCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 729
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.successfulWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getFailedReadCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 738
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.failedReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getFailedWriteCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 747
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.failedWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getCancelledReadCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 756
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.cancelledReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getCancelledWriteCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 765
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.cancelledWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getCurrentReadCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 774
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentReads:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getCurrentWriteCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 783
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentWrites:Ljava/util/concurrent/atomic/LongAdder;
            invokevirtual java.util.concurrent.atomic.LongAdder.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;

  public long getCurrentRegistrationCount();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
         0: .line 792
            aload 0 /* this */
            getfield com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup.currentRegistrations:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.longValue:()J
            lreturn
        end local 0 // com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/mongodb/internal/connection/tlschannel/async/AsynchronousTlsChannelGroup;
}
SourceFile: "AsynchronousTlsChannelGroup.java"
NestMembers:
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$1  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$10  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$11  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$2  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$3  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$4  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$5  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$6  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$7  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$8  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$9  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Operation  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation
InnerClasses:
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$1
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$10
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$11
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$2
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$3
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$4
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$5
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$6
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$7
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$8
  com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$9
  private abstract Operation = com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Operation of com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
  final ReadOperation = com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$ReadOperation of com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
  RegisteredSocket = com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$RegisteredSocket of com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
  private final Shutdown = com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$Shutdown of com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
  final WriteOperation = com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup$WriteOperation of com.mongodb.internal.connection.tlschannel.async.AsynchronousTlsChannelGroup
  public CallerRunsPolicy = java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy of java.util.concurrent.ThreadPoolExecutor