public class io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl extends io.vertx.ext.stomp.impl.StompServerTCPConnectionImpl implements io.vertx.ext.stomp.StompServerConnection
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl
  super_class: io.vertx.ext.stomp.impl.StompServerTCPConnectionImpl
{
  private final io.vertx.core.http.ServerWebSocket socket;
    descriptor: Lio/vertx/core/http/ServerWebSocket;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.vertx.core.http.ServerWebSocket, io.vertx.ext.stomp.StompServer, io.vertx.core.Handler<io.vertx.ext.stomp.ServerFrame>);
    descriptor: (Lio/vertx/core/http/ServerWebSocket;Lio/vertx/ext/stomp/StompServer;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl this
        start local 1 // io.vertx.core.http.ServerWebSocket socket
        start local 2 // io.vertx.ext.stomp.StompServer server
        start local 3 // io.vertx.core.Handler writtenFrameHandler
         0: .line 38
            aload 0 /* this */
            aload 2 /* server */
            aload 3 /* writtenFrameHandler */
            invokespecial io.vertx.ext.stomp.impl.StompServerTCPConnectionImpl.<init>:(Lio/vertx/ext/stomp/StompServer;Lio/vertx/core/Handler;)V
         1: .line 39
            aload 1 /* socket */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 40
            aload 0 /* this */
            aload 1 /* socket */
            putfield io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.socket:Lio/vertx/core/http/ServerWebSocket;
         3: .line 41
            return
        end local 3 // io.vertx.core.Handler writtenFrameHandler
        end local 2 // io.vertx.ext.stomp.StompServer server
        end local 1 // io.vertx.core.http.ServerWebSocket socket
        end local 0 // io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    4     0                 this  Lio/vertx/ext/stomp/impl/StompServerWebSocketConnectionImpl;
            0    4     1               socket  Lio/vertx/core/http/ServerWebSocket;
            0    4     2               server  Lio/vertx/ext/stomp/StompServer;
            0    4     3  writtenFrameHandler  Lio/vertx/core/Handler<Lio/vertx/ext/stomp/ServerFrame;>;
    Signature: (Lio/vertx/core/http/ServerWebSocket;Lio/vertx/ext/stomp/StompServer;Lio/vertx/core/Handler<Lio/vertx/ext/stomp/ServerFrame;>;)V
    MethodParameters:
                     Name  Flags
      socket               
      server               
      writtenFrameHandler  

  public javax.net.ssl.SSLSession sslSession();
    descriptor: ()Ljavax/net/ssl/SSLSession;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl this
         0: .line 45
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.socket:Lio/vertx/core/http/ServerWebSocket;
            invokeinterface io.vertx.core.http.ServerWebSocket.sslSession:()Ljavax/net/ssl/SSLSession;
            areturn
        end local 0 // io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/stomp/impl/StompServerWebSocketConnectionImpl;

  public io.vertx.ext.stomp.StompServerConnection write(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/ext/stomp/StompServerConnection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl this
        start local 1 // io.vertx.core.buffer.Buffer buffer
         0: .line 50
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.socket:Lio/vertx/core/http/ServerWebSocket;
            aload 1 /* buffer */
            invokeinterface io.vertx.core.http.ServerWebSocket.writeBinaryMessage:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/Future;
            pop
         1: .line 51
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.buffer.Buffer buffer
        end local 0 // io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/vertx/ext/stomp/impl/StompServerWebSocketConnectionImpl;
            0    2     1  buffer  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
        Name  Flags
      buffer  

  public void ping();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl this
         0: .line 56
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.handler:Lio/vertx/core/Handler;
            ifnull 2
         1: .line 57
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.handler:Lio/vertx/core/Handler;
            new io.vertx.ext.stomp.impl.ServerFrameImpl
            dup
            getstatic io.vertx.ext.stomp.Frames.PING:Lio/vertx/ext/stomp/Frame;
            aload 0 /* this */
            invokespecial io.vertx.ext.stomp.impl.ServerFrameImpl.<init>:(Lio/vertx/ext/stomp/Frame;Lio/vertx/ext/stomp/StompServerConnection;)V
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.socket:Lio/vertx/core/http/ServerWebSocket;
            ldc "\n"
            invokestatic io.vertx.core.buffer.Buffer.buffer:(Ljava/lang/String;)Lio/vertx/core/buffer/Buffer;
            invokeinterface io.vertx.core.http.ServerWebSocket.write:(Ljava/lang/Object;)Lio/vertx/core/Future;
            pop
         3: .line 60
            return
        end local 0 // io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/stomp/impl/StompServerWebSocketConnectionImpl;

  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.StompServerWebSocketConnectionImpl this
         0: .line 64
            aload 0 /* this */
            invokevirtual io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.cancelHeartbeat:()V
         1: .line 65
            aload 0 /* this */
            invokevirtual io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.handler:()Lio/vertx/ext/stomp/StompServerHandler;
            aload 0 /* this */
            invokeinterface io.vertx.ext.stomp.StompServerHandler.onClose:(Lio/vertx/ext/stomp/StompServerConnection;)V
         2: .line 67
            aload 0 /* this */
            getfield io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl.socket:Lio/vertx/core/http/ServerWebSocket;
            invokeinterface io.vertx.core.http.ServerWebSocket.close:()Lio/vertx/core/Future;
            pop
         3: .line 68
            goto 5
      StackMap locals:
      StackMap stack: java.lang.IllegalStateException
         4: pop
         5: .line 71
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.ext.stomp.impl.StompServerWebSocketConnectionImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/ext/stomp/impl/StompServerWebSocketConnectionImpl;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.IllegalStateException
}
SourceFile: "StompServerWebSocketConnectionImpl.java"