class io.vertx.core.http.impl.WebSocketEndpoint extends io.vertx.core.http.impl.ClientHttpEndpointBase
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.core.http.impl.WebSocketEndpoint
  super_class: io.vertx.core.http.impl.ClientHttpEndpointBase
{
  private final int maxPoolSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.http.impl.HttpChannelConnector connector;
    descriptor: Lio/vertx/core/http/impl/HttpChannelConnector;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Deque<io.vertx.core.http.impl.WebSocketEndpoint$Waiter> waiters;
    descriptor: Ljava/util/Deque;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Deque<Lio/vertx/core/http/impl/WebSocketEndpoint$Waiter;>;

  private int inflightConnections;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  void <init>(io.vertx.core.spi.metrics.ClientMetrics, int, java.lang.String, java.lang.Object, int, io.vertx.core.http.impl.HttpChannelConnector, java.lang.Runnable);
    descriptor: (Lio/vertx/core/spi/metrics/ClientMetrics;ILjava/lang/String;Ljava/lang/Object;ILio/vertx/core/http/impl/HttpChannelConnector;Ljava/lang/Runnable;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=8, args_size=8
        start local 0 // io.vertx.core.http.impl.WebSocketEndpoint this
        start local 1 // io.vertx.core.spi.metrics.ClientMetrics metrics
        start local 2 // int port
        start local 3 // java.lang.String host
        start local 4 // java.lang.Object metric
        start local 5 // int maxPoolSize
        start local 6 // io.vertx.core.http.impl.HttpChannelConnector connector
        start local 7 // java.lang.Runnable dispose
         0: .line 38
            aload 0 /* this */
            aload 1 /* metrics */
            iload 2 /* port */
            aload 3 /* host */
            aload 4 /* metric */
            aload 7 /* dispose */
            invokespecial io.vertx.core.http.impl.ClientHttpEndpointBase.<init>:(Lio/vertx/core/spi/metrics/ClientMetrics;ILjava/lang/String;Ljava/lang/Object;Ljava/lang/Runnable;)V
         1: .line 39
            aload 0 /* this */
            iload 5 /* maxPoolSize */
            putfield io.vertx.core.http.impl.WebSocketEndpoint.maxPoolSize:I
         2: .line 40
            aload 0 /* this */
            aload 6 /* connector */
            putfield io.vertx.core.http.impl.WebSocketEndpoint.connector:Lio/vertx/core/http/impl/HttpChannelConnector;
         3: .line 41
            aload 0 /* this */
            new java.util.ArrayDeque
            dup
            invokespecial java.util.ArrayDeque.<init>:()V
            putfield io.vertx.core.http.impl.WebSocketEndpoint.waiters:Ljava/util/Deque;
         4: .line 42
            return
        end local 7 // java.lang.Runnable dispose
        end local 6 // io.vertx.core.http.impl.HttpChannelConnector connector
        end local 5 // int maxPoolSize
        end local 4 // java.lang.Object metric
        end local 3 // java.lang.String host
        end local 2 // int port
        end local 1 // io.vertx.core.spi.metrics.ClientMetrics metrics
        end local 0 // io.vertx.core.http.impl.WebSocketEndpoint this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lio/vertx/core/http/impl/WebSocketEndpoint;
            0    5     1      metrics  Lio/vertx/core/spi/metrics/ClientMetrics;
            0    5     2         port  I
            0    5     3         host  Ljava/lang/String;
            0    5     4       metric  Ljava/lang/Object;
            0    5     5  maxPoolSize  I
            0    5     6    connector  Lio/vertx/core/http/impl/HttpChannelConnector;
            0    5     7      dispose  Ljava/lang/Runnable;
    MethodParameters:
             Name  Flags
      metrics      
      port         
      host         
      metric       
      maxPoolSize  
      connector    
      dispose      

  private void tryConnect(io.vertx.core.impl.ContextInternal, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.http.impl.HttpClientConnection>>);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketEndpoint this
        start local 1 // io.vertx.core.impl.ContextInternal ctx
        start local 2 // io.vertx.core.Handler handler
         0: .line 93
            new io.vertx.core.http.impl.WebSocketEndpoint$1Listener
            dup
            aload 0 /* this */
            aload 2 /* handler */
            invokespecial io.vertx.core.http.impl.WebSocketEndpoint$1Listener.<init>:(Lio/vertx/core/http/impl/WebSocketEndpoint;Lio/vertx/core/Handler;)V
            astore 3 /* listener */
        start local 3 // io.vertx.core.http.impl.WebSocketEndpoint$1Listener listener
         1: .line 94
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketEndpoint.connector:Lio/vertx/core/http/impl/HttpChannelConnector;
            aload 3 /* listener */
            aload 1 /* ctx */
            aload 3 /* listener */
            invokevirtual io.vertx.core.http.impl.HttpChannelConnector.connect:(Lio/vertx/core/net/impl/clientconnection/ConnectionListener;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;)V
         2: .line 95
            return
        end local 3 // io.vertx.core.http.impl.WebSocketEndpoint$1Listener listener
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.impl.ContextInternal ctx
        end local 0 // io.vertx.core.http.impl.WebSocketEndpoint this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/vertx/core/http/impl/WebSocketEndpoint;
            0    3     1       ctx  Lio/vertx/core/impl/ContextInternal;
            0    3     2   handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/impl/HttpClientConnection;>;>;
            1    3     3  listener  Lio/vertx/core/http/impl/WebSocketEndpoint$1Listener;
    Signature: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/impl/HttpClientConnection;>;>;)V
    MethodParameters:
         Name  Flags
      ctx      
      handler  

  public void requestConnection2(io.vertx.core.impl.ContextInternal, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.http.impl.HttpClientConnection>>);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.vertx.core.http.impl.WebSocketEndpoint this
        start local 1 // io.vertx.core.impl.ContextInternal ctx
        start local 2 // io.vertx.core.Handler handler
         0: .line 99
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         1: .line 100
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketEndpoint.inflightConnections:I
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketEndpoint.maxPoolSize:I
            if_icmplt 5
         2: .line 101
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketEndpoint.waiters:Ljava/util/Deque;
            new io.vertx.core.http.impl.WebSocketEndpoint$Waiter
            dup
            aload 2 /* handler */
            aload 1 /* ctx */
            invokespecial io.vertx.core.http.impl.WebSocketEndpoint$Waiter.<init>:(Lio/vertx/core/Handler;Lio/vertx/core/impl/ContextInternal;)V
            invokeinterface java.util.Deque.add:(Ljava/lang/Object;)Z
            pop
         3: .line 102
            aload 3
            monitorexit
         4: return
         5: .line 104
      StackMap locals: io.vertx.core.http.impl.WebSocketEndpoint
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.vertx.core.http.impl.WebSocketEndpoint.inflightConnections:I
            iconst_1
            iadd
            putfield io.vertx.core.http.impl.WebSocketEndpoint.inflightConnections:I
         6: .line 99
            aload 3
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 3
            monitorexit
         9: athrow
        10: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* handler */
            invokevirtual io.vertx.core.http.impl.WebSocketEndpoint.tryConnect:(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler;)V
        11: .line 107
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // io.vertx.core.impl.ContextInternal ctx
        end local 0 // io.vertx.core.http.impl.WebSocketEndpoint this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lio/vertx/core/http/impl/WebSocketEndpoint;
            0   12     1      ctx  Lio/vertx/core/impl/ContextInternal;
            0   12     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/impl/HttpClientConnection;>;>;
      Exception table:
        from    to  target  type
           1     4       8  any
           5     7       8  any
           8     9       8  any
    Signature: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/http/impl/HttpClientConnection;>;>;)V
    MethodParameters:
         Name  Flags
      ctx      
      handler  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketEndpoint this
         0: .line 111
            aload 0 /* this */
            invokespecial io.vertx.core.http.impl.ClientHttpEndpointBase.close:()V
         1: .line 112
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         2: .line 113
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketEndpoint.waiters:Ljava/util/Deque;
            invokedynamic accept()Ljava/util/function/Consumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/http/impl/WebSocketEndpoint.lambda$0(Lio/vertx/core/http/impl/WebSocketEndpoint$Waiter;)V (6)
                  (Lio/vertx/core/http/impl/WebSocketEndpoint$Waiter;)V
            invokeinterface java.util.Deque.forEach:(Ljava/util/function/Consumer;)V
         3: .line 118
            aload 0 /* this */
            getfield io.vertx.core.http.impl.WebSocketEndpoint.waiters:Ljava/util/Deque;
            invokeinterface java.util.Deque.clear:()V
         4: .line 112
            aload 1
            monitorexit
         5: goto 8
      StackMap locals: io.vertx.core.http.impl.WebSocketEndpoint io.vertx.core.http.impl.WebSocketEndpoint
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 120
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.http.impl.WebSocketEndpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lio/vertx/core/http/impl/WebSocketEndpoint;
      Exception table:
        from    to  target  type
           2     5       6  any
           6     7       6  any

  static void access$0(io.vertx.core.http.impl.WebSocketEndpoint, java.lang.Object);
    descriptor: (Lio/vertx/core/http/impl/WebSocketEndpoint;Ljava/lang/Object;)V
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.WebSocketEndpoint.connectionRemoved:(Ljava/lang/Object;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static void access$1(io.vertx.core.http.impl.WebSocketEndpoint, java.lang.Object);
    descriptor: (Lio/vertx/core/http/impl/WebSocketEndpoint;Ljava/lang/Object;)V
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.core.http.impl.WebSocketEndpoint.connectionAdded:(Ljava/lang/Object;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static void lambda$0(io.vertx.core.http.impl.WebSocketEndpoint$Waiter);
    descriptor: (Lio/vertx/core/http/impl/WebSocketEndpoint$Waiter;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.impl.WebSocketEndpoint$Waiter waiter
         0: .line 114
            aload 0 /* waiter */
            getfield io.vertx.core.http.impl.WebSocketEndpoint$Waiter.context:Lio/vertx/core/impl/ContextInternal;
            aload 0 /* waiter */
            invokedynamic handle(Lio/vertx/core/http/impl/WebSocketEndpoint$Waiter;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/core/http/impl/WebSocketEndpoint.lambda$1(Lio/vertx/core/http/impl/WebSocketEndpoint$Waiter;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
         1: .line 117
            return
        end local 0 // io.vertx.core.http.impl.WebSocketEndpoint$Waiter waiter
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0  waiter  Lio/vertx/core/http/impl/WebSocketEndpoint$Waiter;

  private static void lambda$1(io.vertx.core.http.impl.WebSocketEndpoint$Waiter, java.lang.Void);
    descriptor: (Lio/vertx/core/http/impl/WebSocketEndpoint$Waiter;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 115
            aload 0
            getfield io.vertx.core.http.impl.WebSocketEndpoint$Waiter.handler:Lio/vertx/core/Handler;
            ldc "Closed"
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 116
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     v  Ljava/lang/Void;
}
SourceFile: "WebSocketEndpoint.java"
NestMembers:
  io.vertx.core.http.impl.WebSocketEndpoint$1Listener  io.vertx.core.http.impl.WebSocketEndpoint$Waiter
InnerClasses:
  Listener = io.vertx.core.http.impl.WebSocketEndpoint$1Listener
  private Waiter = io.vertx.core.http.impl.WebSocketEndpoint$Waiter of io.vertx.core.http.impl.WebSocketEndpoint
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles