public class io.vertx.ext.stomp.impl.StompServerImpl implements io.vertx.ext.stomp.StompServer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.stomp.impl.StompServerImpl
  super_class: java.lang.Object
{
  private static final io.vertx.core.logging.Logger LOGGER;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final io.vertx.core.Vertx vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.ext.stomp.StompServerOptions options;
    descriptor: Lio/vertx/ext/stomp/StompServerOptions;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.net.NetServer server;
    descriptor: Lio/vertx/core/net/NetServer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private io.vertx.ext.stomp.StompServerHandler handler;
    descriptor: Lio/vertx/ext/stomp/StompServerHandler;
    flags: (0x0002) ACC_PRIVATE

  private volatile boolean listening;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private io.vertx.core.Handler<io.vertx.ext.stomp.ServerFrame> writingFrameHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Lio/vertx/ext/stomp/ServerFrame;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 38
            ldc Lio/vertx/ext/stomp/impl/StompServerImpl;
            invokestatic io.vertx.core.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/logging/Logger;
            putstatic io.vertx.ext.stomp.impl.StompServerImpl.LOGGER:Lio/vertx/core/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.Vertx, io.vertx.core.net.NetServer, io.vertx.ext.stomp.StompServerOptions);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/net/NetServer;Lio/vertx/ext/stomp/StompServerOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.core.net.NetServer net
        start local 3 // io.vertx.ext.stomp.StompServerOptions options
         0: .line 55
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 56
            aload 1 /* vertx */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 57
            aload 3 /* options */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 58
            aload 0 /* this */
            aload 3 /* options */
            putfield io.vertx.ext.stomp.impl.StompServerImpl.options:Lio/vertx/ext/stomp/StompServerOptions;
         4: .line 59
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.ext.stomp.impl.StompServerImpl.vertx:Lio/vertx/core/Vertx;
         5: .line 60
            aload 2 /* net */
            ifnonnull 8
         6: .line 61
            aload 0 /* this */
            aload 1 /* vertx */
            aload 3 /* options */
            invokeinterface io.vertx.core.Vertx.createNetServer:(Lio/vertx/core/net/NetServerOptions;)Lio/vertx/core/net/NetServer;
            putfield io.vertx.ext.stomp.impl.StompServerImpl.server:Lio/vertx/core/net/NetServer;
         7: .line 62
            goto 9
         8: .line 63
      StackMap locals: io.vertx.ext.stomp.impl.StompServerImpl io.vertx.core.Vertx io.vertx.core.net.NetServer io.vertx.ext.stomp.StompServerOptions
      StackMap stack:
            aload 0 /* this */
            aload 2 /* net */
            putfield io.vertx.ext.stomp.impl.StompServerImpl.server:Lio/vertx/core/net/NetServer;
         9: .line 65
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.ext.stomp.StompServerOptions options
        end local 2 // io.vertx.core.net.NetServer net
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0   10     1    vertx  Lio/vertx/core/Vertx;
            0   10     2      net  Lio/vertx/core/net/NetServer;
            0   10     3  options  Lio/vertx/ext/stomp/StompServerOptions;
    MethodParameters:
         Name  Flags
      vertx    
      net      
      options  

  public synchronized io.vertx.ext.stomp.StompServer handler(io.vertx.ext.stomp.StompServerHandler);
    descriptor: (Lio/vertx/ext/stomp/StompServerHandler;)Lio/vertx/ext/stomp/StompServer;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 1 // io.vertx.ext.stomp.StompServerHandler handler
         0: .line 69
            aload 1 /* handler */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 70
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.ext.stomp.impl.StompServerImpl.handler:Lio/vertx/ext/stomp/StompServerHandler;
         2: .line 71
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.ext.stomp.StompServerHandler handler
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    3     1  handler  Lio/vertx/ext/stomp/StompServerHandler;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.ext.stomp.StompServer listen();
    descriptor: ()Lio/vertx/ext/stomp/StompServer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
         0: .line 76
            aload 0 /* this */
            aconst_null
            invokevirtual io.vertx.ext.stomp.impl.StompServerImpl.listen:(Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/StompServer;
            areturn
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;

  public io.vertx.ext.stomp.StompServer listen(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.stomp.StompServer>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/StompServer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 81
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.options:Lio/vertx/ext/stomp/StompServerOptions;
            invokevirtual io.vertx.ext.stomp.StompServerOptions.getPort:()I
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.options:Lio/vertx/ext/stomp/StompServerOptions;
            invokevirtual io.vertx.ext.stomp.StompServerOptions.getHost:()Ljava/lang/String;
            aload 1 /* handler */
            invokevirtual io.vertx.ext.stomp.impl.StompServerImpl.listen:(ILjava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/StompServer;
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    1     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/stomp/StompServer;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/stomp/StompServer;>;>;)Lio/vertx/ext/stomp/StompServer;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.ext.stomp.StompServer listen(int);
    descriptor: (I)Lio/vertx/ext/stomp/StompServer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 1 // int port
         0: .line 86
            aload 0 /* this */
            iload 1 /* port */
            ldc "0.0.0.0"
            invokevirtual io.vertx.ext.stomp.impl.StompServerImpl.listen:(ILjava/lang/String;)Lio/vertx/ext/stomp/StompServer;
            areturn
        end local 1 // int port
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    1     1  port  I
    MethodParameters:
      Name  Flags
      port  

  public io.vertx.ext.stomp.StompServer listen(int, java.lang.String);
    descriptor: (ILjava/lang/String;)Lio/vertx/ext/stomp/StompServer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 1 // int port
        start local 2 // java.lang.String host
         0: .line 91
            aload 0 /* this */
            iload 1 /* port */
            aload 2 /* host */
            aconst_null
            invokevirtual io.vertx.ext.stomp.impl.StompServerImpl.listen:(ILjava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/StompServer;
            areturn
        end local 2 // java.lang.String host
        end local 1 // int port
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    1     1  port  I
            0    1     2  host  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      port  
      host  

  public io.vertx.ext.stomp.StompServer listen(int, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.stomp.StompServer>>);
    descriptor: (ILio/vertx/core/Handler;)Lio/vertx/ext/stomp/StompServer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 1 // int port
        start local 2 // io.vertx.core.Handler handler
         0: .line 96
            aload 0 /* this */
            iload 1 /* port */
            ldc "0.0.0.0"
            aload 2 /* handler */
            invokevirtual io.vertx.ext.stomp.impl.StompServerImpl.listen:(ILjava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/StompServer;
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // int port
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    1     1     port  I
            0    1     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/stomp/StompServer;>;>;
    Signature: (ILio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/stomp/StompServer;>;>;)Lio/vertx/ext/stomp/StompServer;
    MethodParameters:
         Name  Flags
      port     
      handler  

  public io.vertx.ext.stomp.StompServer listen(int, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.stomp.StompServer>>);
    descriptor: (ILjava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/StompServer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 1 // int port
        start local 2 // java.lang.String host
        start local 3 // io.vertx.core.Handler handler
         0: .line 101
            iload 1 /* port */
            iconst_m1
            if_icmpne 3
         1: .line 102
            aload 3 /* handler */
            ldc "TCP server disabled. The port is set to '-1'."
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/String;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 103
            aload 0 /* this */
            areturn
         3: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 5
            monitorenter
         4: .line 107
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.handler:Lio/vertx/ext/stomp/StompServerHandler;
            astore 4 /* stomp */
        start local 4 // io.vertx.ext.stomp.StompServerHandler stomp
         5: .line 106
            aload 5
            monitorexit
         6: goto 9
        end local 4 // io.vertx.ext.stomp.StompServerHandler stomp
      StackMap locals: io.vertx.ext.stomp.impl.StompServerImpl int java.lang.String io.vertx.core.Handler top io.vertx.ext.stomp.impl.StompServerImpl
      StackMap stack: java.lang.Throwable
         7: aload 5
            monitorexit
         8: athrow
        start local 4 // io.vertx.ext.stomp.StompServerHandler stomp
         9: .line 110
      StackMap locals: io.vertx.ext.stomp.impl.StompServerImpl int java.lang.String io.vertx.core.Handler io.vertx.ext.stomp.StompServerHandler
      StackMap stack:
            aload 4 /* stomp */
            ldc "Cannot open STOMP server - no StompServerConnectionHandler attached to the server."
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
        10: .line 112
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.server:Lio/vertx/core/net/NetServer;
        11: .line 113
            aload 0 /* this */
            aload 4 /* stomp */
            invokedynamic handle(Lio/vertx/ext/stomp/impl/StompServerImpl;Lio/vertx/ext/stomp/StompServerHandler;)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/ext/stomp/impl/StompServerImpl.lambda$0(Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/core/net/NetSocket;)V (7)
                  (Lio/vertx/core/net/NetSocket;)V
            invokeinterface io.vertx.core.net.NetServer.connectHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetServer;
        12: .line 131
            iload 1 /* port */
            aload 2 /* host */
            aload 0 /* this */
            aload 3 /* handler */
            invokedynamic handle(Lio/vertx/ext/stomp/impl/StompServerImpl;Lio/vertx/core/Handler;)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/ext/stomp/impl/StompServerImpl.lambda$5(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.net.NetServer.listen:(ILjava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/net/NetServer;
            pop
        13: .line 146
            aload 0 /* this */
            areturn
        end local 4 // io.vertx.ext.stomp.StompServerHandler stomp
        end local 3 // io.vertx.core.Handler handler
        end local 2 // java.lang.String host
        end local 1 // int port
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0   14     1     port  I
            0   14     2     host  Ljava/lang/String;
            0   14     3  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/stomp/StompServer;>;>;
            5    7     4    stomp  Lio/vertx/ext/stomp/StompServerHandler;
            9   14     4    stomp  Lio/vertx/ext/stomp/StompServerHandler;
      Exception table:
        from    to  target  type
           4     6       7  any
           7     8       7  any
    Signature: (ILjava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/ext/stomp/StompServer;>;>;)Lio/vertx/ext/stomp/StompServer;
    MethodParameters:
         Name  Flags
      port     
      host     
      handler  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
         0: .line 151
            aload 0 /* this */
            aconst_null
            invokevirtual io.vertx.ext.stomp.impl.StompServerImpl.close:(Lio/vertx/core/Handler;)V
         1: .line 152
            return
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;

  public boolean isListening();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
         0: .line 156
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.listening:Z
            ireturn
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;

  public int actualPort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
         0: .line 161
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.server:Lio/vertx/core/net/NetServer;
            invokeinterface io.vertx.core.net.NetServer.actualPort:()I
            ireturn
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;

  public io.vertx.ext.stomp.StompServerOptions options();
    descriptor: ()Lio/vertx/ext/stomp/StompServerOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
         0: .line 166
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.options:Lio/vertx/ext/stomp/StompServerOptions;
            areturn
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;

  public io.vertx.core.Vertx vertx();
    descriptor: ()Lio/vertx/core/Vertx;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
         0: .line 171
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.vertx:Lio/vertx/core/Vertx;
            areturn
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;

  public synchronized io.vertx.ext.stomp.StompServerHandler stompHandler();
    descriptor: ()Lio/vertx/ext/stomp/StompServerHandler;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
         0: .line 176
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.handler:Lio/vertx/ext/stomp/StompServerHandler;
            areturn
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;

  public void close(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 1 // io.vertx.core.Handler done
         0: .line 182
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.listening:Z
            ifne 4
         1: .line 183
            aload 1 /* done */
            ifnull 3
         2: .line 184
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.vertx:Lio/vertx/core/Vertx;
            aload 1 /* done */
            invokedynamic handle(Lio/vertx/core/Handler;)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/ext/stomp/impl/StompServerImpl.lambda$8(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Vertx.runOnContext:(Lio/vertx/core/Handler;)V
         3: .line 186
      StackMap locals:
      StackMap stack:
            return
         4: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* done */
            invokedynamic handle(Lio/vertx/ext/stomp/impl/StompServerImpl;Lio/vertx/core/Handler;)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/ext/stomp/impl/StompServerImpl.lambda$9(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (7)
                  (Lio/vertx/core/AsyncResult;)V
            astore 2 /* listener */
        start local 2 // io.vertx.core.Handler listener
         5: .line 202
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.server:Lio/vertx/core/net/NetServer;
            aload 2 /* listener */
            invokeinterface io.vertx.core.net.NetServer.close:(Lio/vertx/core/Handler;)V
         6: .line 203
            return
        end local 2 // io.vertx.core.Handler listener
        end local 1 // io.vertx.core.Handler done
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    7     1      done  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            5    7     2  listener  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
      Name  Flags
      done  

  public io.vertx.core.Handler<io.vertx.core.http.ServerWebSocket> webSocketHandler();
    descriptor: ()Lio/vertx/core/Handler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
         0: .line 207
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.options:Lio/vertx/ext/stomp/StompServerOptions;
            invokevirtual io.vertx.ext.stomp.StompServerOptions.isWebsocketBridge:()Z
            ifne 2
         1: .line 208
            aconst_null
            areturn
         2: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         3: .line 213
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.handler:Lio/vertx/ext/stomp/StompServerHandler;
            astore 1 /* stomp */
        start local 1 // io.vertx.ext.stomp.StompServerHandler stomp
         4: .line 212
            aload 2
            monitorexit
         5: goto 8
        end local 1 // io.vertx.ext.stomp.StompServerHandler stomp
      StackMap locals: io.vertx.ext.stomp.impl.StompServerImpl top io.vertx.ext.stomp.impl.StompServerImpl
      StackMap stack: java.lang.Throwable
         6: aload 2
            monitorexit
         7: athrow
        start local 1 // io.vertx.ext.stomp.StompServerHandler stomp
         8: .line 216
      StackMap locals: io.vertx.ext.stomp.impl.StompServerImpl io.vertx.ext.stomp.StompServerHandler
      StackMap stack:
            aload 0 /* this */
            aload 1 /* stomp */
            invokedynamic handle(Lio/vertx/ext/stomp/impl/StompServerImpl;Lio/vertx/ext/stomp/StompServerHandler;)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/ext/stomp/impl/StompServerImpl.lambda$10(Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/core/http/ServerWebSocket;)V (7)
                  (Lio/vertx/core/http/ServerWebSocket;)V
            areturn
        end local 1 // io.vertx.ext.stomp.StompServerHandler stomp
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            4    6     1  stomp  Lio/vertx/ext/stomp/StompServerHandler;
            8    9     1  stomp  Lio/vertx/ext/stomp/StompServerHandler;
      Exception table:
        from    to  target  type
           3     5       6  any
           6     7       6  any
    Signature: ()Lio/vertx/core/Handler<Lio/vertx/core/http/ServerWebSocket;>;

  public io.vertx.ext.stomp.StompServer writingFrameHandler(io.vertx.core.Handler<io.vertx.ext.stomp.ServerFrame>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/StompServer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 244
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 245
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.ext.stomp.impl.StompServerImpl.writingFrameHandler:Lio/vertx/core/Handler;
         2: .line 244
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: io.vertx.ext.stomp.impl.StompServerImpl io.vertx.core.Handler io.vertx.ext.stomp.impl.StompServerImpl
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 247
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    7     1  handler  Lio/vertx/core/Handler<Lio/vertx/ext/stomp/ServerFrame;>;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    Signature: (Lio/vertx/core/Handler<Lio/vertx/ext/stomp/ServerFrame;>;)Lio/vertx/ext/stomp/StompServer;
    MethodParameters:
         Name  Flags
      handler  

  private void lambda$0(io.vertx.ext.stomp.StompServerHandler, io.vertx.core.net.NetSocket);
    descriptor: (Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/core/net/NetSocket;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 2 // io.vertx.core.net.NetSocket socket
         0: .line 114
            new io.vertx.ext.stomp.impl.StompServerTCPConnectionImpl
            dup
            aload 2 /* socket */
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.writingFrameHandler:Lio/vertx/core/Handler;
            invokespecial io.vertx.ext.stomp.impl.StompServerTCPConnectionImpl.<init>:(Lio/vertx/core/net/NetSocket;Lio/vertx/ext/stomp/StompServer;Lio/vertx/core/Handler;)V
            astore 3 /* connection */
        start local 3 // io.vertx.ext.stomp.StompServerConnection connection
         1: .line 115
            new io.vertx.ext.stomp.impl.FrameParser
            dup
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.options:Lio/vertx/ext/stomp/StompServerOptions;
            invokespecial io.vertx.ext.stomp.impl.FrameParser.<init>:(Lio/vertx/ext/stomp/StompServerOptions;)V
            astore 4 /* parser */
        start local 4 // io.vertx.ext.stomp.impl.FrameParser parser
         2: .line 116
            aload 2 /* socket */
            aload 3 /* connection */
            invokedynamic handle(Lio/vertx/ext/stomp/StompServerConnection;)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/ext/stomp/impl/StompServerImpl.lambda$1(Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/Throwable;)V (6)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.net.NetSocket.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetSocket;
            pop
         3: .line 120
            aload 2 /* socket */
            aload 3 /* connection */
            invokedynamic handle(Lio/vertx/ext/stomp/StompServerConnection;)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/ext/stomp/impl/StompServerImpl.lambda$2(Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.net.NetSocket.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetSocket;
            pop
         4: .line 121
            aload 4 /* parser */
         5: .line 122
            aload 3 /* connection */
            invokedynamic handle(Lio/vertx/ext/stomp/StompServerConnection;)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/ext/stomp/impl/StompServerImpl.lambda$3(Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/impl/FrameException;)V (6)
                  (Lio/vertx/ext/stomp/impl/FrameException;)V
            invokevirtual io.vertx.ext.stomp.impl.FrameParser.errorHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/impl/FrameParser;
         6: .line 128
            aload 1
            aload 3 /* connection */
            invokedynamic handle(Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/ext/stomp/StompServerConnection;)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/ext/stomp/impl/StompServerImpl.lambda$4(Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/Frame;)V (6)
                  (Lio/vertx/ext/stomp/Frame;)V
            invokevirtual io.vertx.ext.stomp.impl.FrameParser.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/impl/FrameParser;
            pop
         7: .line 129
            aload 2 /* socket */
            aload 4 /* parser */
            invokeinterface io.vertx.core.net.NetSocket.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/NetSocket;
            pop
        end local 4 // io.vertx.ext.stomp.impl.FrameParser parser
        end local 3 // io.vertx.ext.stomp.StompServerConnection connection
         8: .line 130
            return
        end local 2 // io.vertx.core.net.NetSocket socket
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    9     2      socket  Lio/vertx/core/net/NetSocket;
            1    8     3  connection  Lio/vertx/ext/stomp/StompServerConnection;
            2    8     4      parser  Lio/vertx/ext/stomp/impl/FrameParser;

  private void lambda$5(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 2 // io.vertx.core.AsyncResult ar
         0: .line 132
            aload 2 /* ar */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 6
         1: .line 133
            aload 1
            ifnull 4
         2: .line 134
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.vertx:Lio/vertx/core/Vertx;
            aload 1
            aload 2 /* ar */
            invokedynamic handle(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)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/ext/stomp/impl/StompServerImpl.lambda$6(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Vertx.runOnContext:(Lio/vertx/core/Handler;)V
         3: .line 135
            goto 10
         4: .line 136
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.stomp.impl.StompServerImpl.LOGGER:Lio/vertx/core/logging/Logger;
            aload 2 /* ar */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;)V
         5: .line 138
            goto 10
         6: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.vertx.ext.stomp.impl.StompServerImpl.listening:Z
         7: .line 140
            getstatic io.vertx.ext.stomp.impl.StompServerImpl.LOGGER:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "STOMP server listening on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* ar */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.net.NetServer
            invokeinterface io.vertx.core.net.NetServer.actualPort:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         8: .line 141
            aload 1
            ifnull 10
         9: .line 142
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            aload 1
            invokedynamic handle(Lio/vertx/ext/stomp/impl/StompServerImpl;Lio/vertx/core/Handler;)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/ext/stomp/impl/StompServerImpl.lambda$7(Lio/vertx/core/Handler;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Vertx.runOnContext:(Lio/vertx/core/Handler;)V
        10: .line 145
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult ar
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0   11     2    ar  Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetServer;>;

  private static void lambda$8(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;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 184
            aload 0
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;

  private void lambda$9(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 2 // io.vertx.core.AsyncResult v
         0: .line 190
            aload 2 /* v */
            invokeinterface io.vertx.core.AsyncResult.succeeded:()Z
            ifeq 3
         1: .line 191
            getstatic io.vertx.ext.stomp.impl.StompServerImpl.LOGGER:Lio/vertx/core/logging/Logger;
            ldc "STOMP Server stopped"
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;)V
         2: .line 192
            goto 4
         3: .line 193
      StackMap locals:
      StackMap stack:
            getstatic io.vertx.ext.stomp.impl.StompServerImpl.LOGGER:Lio/vertx/core/logging/Logger;
            ldc "STOMP Server failed to stop"
            aload 2 /* v */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokevirtual io.vertx.core.logging.Logger.info:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         4: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.stomp.impl.StompServerImpl.listening:Z
         5: .line 197
            aload 1
            ifnull 7
         6: .line 198
            aload 1
            aload 2 /* v */
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         7: .line 200
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.vertx.core.AsyncResult v
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    8     2     v  Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;

  private void lambda$10(io.vertx.ext.stomp.StompServerHandler, io.vertx.core.http.ServerWebSocket);
    descriptor: (Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/core/http/ServerWebSocket;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 2 // io.vertx.core.http.ServerWebSocket socket
         0: .line 217
            aload 2 /* socket */
            invokeinterface io.vertx.core.http.ServerWebSocket.path:()Ljava/lang/String;
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.options:Lio/vertx/ext/stomp/StompServerOptions;
            invokevirtual io.vertx.ext.stomp.StompServerOptions.getWebsocketPath:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 6
         1: .line 218
            getstatic io.vertx.ext.stomp.impl.StompServerImpl.LOGGER:Lio/vertx/core/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Receiving a web socket connection on an invalid path ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* socket */
            invokeinterface io.vertx.core.http.ServerWebSocket.path:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "), the path is "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 219
            ldc "configured to "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.options:Lio/vertx/ext/stomp/StompServerOptions;
            invokevirtual io.vertx.ext.stomp.StompServerOptions.getWebsocketPath:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ". Rejecting connection"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 218
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;)V
         4: .line 220
            aload 2 /* socket */
            invokeinterface io.vertx.core.http.ServerWebSocket.reject:()V
         5: .line 221
            return
         6: .line 223
      StackMap locals:
      StackMap stack:
            new io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl
            dup
            aload 2 /* socket */
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.writingFrameHandler:Lio/vertx/core/Handler;
            invokespecial io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.<init>:(Lio/vertx/core/http/ServerWebSocket;Lio/vertx/ext/stomp/StompServer;Lio/vertx/core/Handler;)V
            astore 3 /* connection */
        start local 3 // io.vertx.ext.stomp.StompServerConnection connection
         7: .line 224
            new io.vertx.ext.stomp.impl.FrameParser
            dup
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerImpl.options:Lio/vertx/ext/stomp/StompServerOptions;
            invokespecial io.vertx.ext.stomp.impl.FrameParser.<init>:(Lio/vertx/ext/stomp/StompServerOptions;)V
            astore 4 /* parser */
        start local 4 // io.vertx.ext.stomp.impl.FrameParser parser
         8: .line 225
            aload 2 /* socket */
            aload 3 /* connection */
            invokedynamic handle(Lio/vertx/ext/stomp/StompServerConnection;)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/ext/stomp/impl/StompServerImpl.lambda$11(Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/Throwable;)V (6)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.http.ServerWebSocket.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
            pop
         9: .line 229
            aload 2 /* socket */
            aload 3 /* connection */
            invokedynamic handle(Lio/vertx/ext/stomp/StompServerConnection;)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/ext/stomp/impl/StompServerImpl.lambda$12(Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.http.ServerWebSocket.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
            pop
        10: .line 230
            aload 4 /* parser */
        11: .line 231
            aload 3 /* connection */
            invokedynamic handle(Lio/vertx/ext/stomp/StompServerConnection;)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/ext/stomp/impl/StompServerImpl.lambda$13(Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/impl/FrameException;)V (6)
                  (Lio/vertx/ext/stomp/impl/FrameException;)V
            invokevirtual io.vertx.ext.stomp.impl.FrameParser.errorHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/impl/FrameParser;
        12: .line 237
            aload 1
            aload 3 /* connection */
            invokedynamic handle(Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/ext/stomp/StompServerConnection;)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/ext/stomp/impl/StompServerImpl.lambda$14(Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/Frame;)V (6)
                  (Lio/vertx/ext/stomp/Frame;)V
            invokevirtual io.vertx.ext.stomp.impl.FrameParser.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/stomp/impl/FrameParser;
            pop
        13: .line 238
            aload 2 /* socket */
            aload 4 /* parser */
            invokeinterface io.vertx.core.http.ServerWebSocket.handler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/ServerWebSocket;
            pop
        end local 4 // io.vertx.ext.stomp.impl.FrameParser parser
        end local 3 // io.vertx.ext.stomp.StompServerConnection connection
        14: .line 239
            return
        end local 2 // io.vertx.core.http.ServerWebSocket socket
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0   15     2      socket  Lio/vertx/core/http/ServerWebSocket;
            7   14     3  connection  Lio/vertx/ext/stomp/StompServerConnection;
            8   14     4      parser  Lio/vertx/ext/stomp/impl/FrameParser;

  private static void lambda$1(io.vertx.ext.stomp.StompServerConnection, java.lang.Throwable);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/Throwable;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // java.lang.Throwable exception
         0: .line 117
            getstatic io.vertx.ext.stomp.impl.StompServerImpl.LOGGER:Lio/vertx/core/logging/Logger;
            ldc "The STOMP server caught a TCP socket error - closing connection"
            aload 1 /* exception */
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         1: .line 118
            aload 0
            invokeinterface io.vertx.ext.stomp.StompServerConnection.close:()V
         2: .line 119
            return
        end local 1 // java.lang.Throwable exception
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     1  exception  Ljava/lang/Throwable;

  private static void lambda$2(io.vertx.ext.stomp.StompServerConnection, java.lang.Void);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 120
            aload 0
            invokeinterface io.vertx.ext.stomp.StompServerConnection.close:()V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;

  private static void lambda$3(io.vertx.ext.stomp.StompServerConnection, io.vertx.ext.stomp.impl.FrameException);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/impl/FrameException;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.ext.stomp.impl.FrameException exception
         0: .line 123
            aload 0
         1: .line 124
            aload 1 /* exception */
            invokestatic io.vertx.ext.stomp.Frames.createInvalidFrameErrorFrame:(Lio/vertx/ext/stomp/impl/FrameException;)Lio/vertx/ext/stomp/Frame;
         2: .line 123
            invokeinterface io.vertx.ext.stomp.StompServerConnection.write:(Lio/vertx/ext/stomp/Frame;)Lio/vertx/ext/stomp/StompServerConnection;
            pop
         3: .line 125
            aload 0
            invokeinterface io.vertx.ext.stomp.StompServerConnection.close:()V
         4: .line 126
            return
        end local 1 // io.vertx.ext.stomp.impl.FrameException exception
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     1  exception  Lio/vertx/ext/stomp/impl/FrameException;

  private static void lambda$4(io.vertx.ext.stomp.StompServerHandler, io.vertx.ext.stomp.StompServerConnection, io.vertx.ext.stomp.Frame);
    descriptor: (Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/Frame;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=3, args_size=3
        start local 2 // io.vertx.ext.stomp.Frame frame
         0: .line 128
            aload 0
            new io.vertx.ext.stomp.impl.ServerFrameImpl
            dup
            aload 2 /* frame */
            aload 1
            invokespecial io.vertx.ext.stomp.impl.ServerFrameImpl.<init>:(Lio/vertx/ext/stomp/Frame;Lio/vertx/ext/stomp/StompServerConnection;)V
            invokeinterface io.vertx.ext.stomp.StompServerHandler.handle:(Ljava/lang/Object;)V
            return
        end local 2 // io.vertx.ext.stomp.Frame frame
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     2  frame  Lio/vertx/ext/stomp/Frame;

  private static void lambda$6(io.vertx.core.Handler, io.vertx.core.AsyncResult, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // java.lang.Void v
         0: .line 134
            aload 0
            aload 1
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 2 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     2     v  Ljava/lang/Void;

  private void lambda$7(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
        start local 2 // java.lang.Void v
         0: .line 142
            aload 1
            aload 0 /* this */
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 2 // java.lang.Void v
        end local 0 // io.vertx.ext.stomp.impl.StompServerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerImpl;
            0    1     2     v  Ljava/lang/Void;

  private static void lambda$11(io.vertx.ext.stomp.StompServerConnection, java.lang.Throwable);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/Throwable;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // java.lang.Throwable exception
         0: .line 226
            getstatic io.vertx.ext.stomp.impl.StompServerImpl.LOGGER:Lio/vertx/core/logging/Logger;
            ldc "The STOMP server caught a WebSocket error - closing connection"
            aload 1 /* exception */
            invokevirtual io.vertx.core.logging.Logger.error:(Ljava/lang/Object;Ljava/lang/Throwable;)V
         1: .line 227
            aload 0
            invokeinterface io.vertx.ext.stomp.StompServerConnection.close:()V
         2: .line 228
            return
        end local 1 // java.lang.Throwable exception
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     1  exception  Ljava/lang/Throwable;

  private static void lambda$12(io.vertx.ext.stomp.StompServerConnection, java.lang.Void);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 229
            aload 0
            invokeinterface io.vertx.ext.stomp.StompServerConnection.close:()V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;

  private static void lambda$13(io.vertx.ext.stomp.StompServerConnection, io.vertx.ext.stomp.impl.FrameException);
    descriptor: (Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/impl/FrameException;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.ext.stomp.impl.FrameException exception
         0: .line 232
            aload 0
         1: .line 233
            aload 1 /* exception */
            invokestatic io.vertx.ext.stomp.Frames.createInvalidFrameErrorFrame:(Lio/vertx/ext/stomp/impl/FrameException;)Lio/vertx/ext/stomp/Frame;
         2: .line 232
            invokeinterface io.vertx.ext.stomp.StompServerConnection.write:(Lio/vertx/ext/stomp/Frame;)Lio/vertx/ext/stomp/StompServerConnection;
            pop
         3: .line 234
            aload 0
            invokeinterface io.vertx.ext.stomp.StompServerConnection.close:()V
         4: .line 235
            return
        end local 1 // io.vertx.ext.stomp.impl.FrameException exception
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     1  exception  Lio/vertx/ext/stomp/impl/FrameException;

  private static void lambda$14(io.vertx.ext.stomp.StompServerHandler, io.vertx.ext.stomp.StompServerConnection, io.vertx.ext.stomp.Frame);
    descriptor: (Lio/vertx/ext/stomp/StompServerHandler;Lio/vertx/ext/stomp/StompServerConnection;Lio/vertx/ext/stomp/Frame;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=3, args_size=3
        start local 2 // io.vertx.ext.stomp.Frame frame
         0: .line 237
            aload 0
            new io.vertx.ext.stomp.impl.ServerFrameImpl
            dup
            aload 2 /* frame */
            aload 1
            invokespecial io.vertx.ext.stomp.impl.ServerFrameImpl.<init>:(Lio/vertx/ext/stomp/Frame;Lio/vertx/ext/stomp/StompServerConnection;)V
            invokeinterface io.vertx.ext.stomp.StompServerHandler.handle:(Ljava/lang/Object;)V
            return
        end local 2 // io.vertx.ext.stomp.Frame frame
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     2  frame  Lio/vertx/ext/stomp/Frame;
}
SourceFile: "StompServerImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles