public class io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec implements io.vertx.core.eventbus.MessageCodec<io.vertx.core.json.JsonObject, io.vertx.core.json.JsonObject>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
         0: .line 21
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/codecs/JsonObjectMessageCodec;

  public void encodeToWire(io.vertx.core.buffer.Buffer, io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
        start local 1 // io.vertx.core.buffer.Buffer buffer
        start local 2 // io.vertx.core.json.JsonObject jsonObject
         0: .line 25
            aload 2 /* jsonObject */
            invokevirtual io.vertx.core.json.JsonObject.toBuffer:()Lio/vertx/core/buffer/Buffer;
            astore 3 /* encoded */
        start local 3 // io.vertx.core.buffer.Buffer encoded
         1: .line 26
            aload 1 /* buffer */
            aload 3 /* encoded */
            invokeinterface io.vertx.core.buffer.Buffer.length:()I
            invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
            pop
         2: .line 27
            aload 1 /* buffer */
            aload 3 /* encoded */
            invokeinterface io.vertx.core.buffer.Buffer.appendBuffer:(Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/buffer/Buffer;
            pop
         3: .line 28
            return
        end local 3 // io.vertx.core.buffer.Buffer encoded
        end local 2 // io.vertx.core.json.JsonObject jsonObject
        end local 1 // io.vertx.core.buffer.Buffer buffer
        end local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/core/eventbus/impl/codecs/JsonObjectMessageCodec;
            0    4     1      buffer  Lio/vertx/core/buffer/Buffer;
            0    4     2  jsonObject  Lio/vertx/core/json/JsonObject;
            1    4     3     encoded  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
            Name  Flags
      buffer      
      jsonObject  

  public io.vertx.core.json.JsonObject decodeFromWire(int, io.vertx.core.buffer.Buffer);
    descriptor: (ILio/vertx/core/buffer/Buffer;)Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
        start local 1 // int pos
        start local 2 // io.vertx.core.buffer.Buffer buffer
         0: .line 32
            aload 2 /* buffer */
            iload 1 /* pos */
            invokeinterface io.vertx.core.buffer.Buffer.getInt:(I)I
            istore 3 /* length */
        start local 3 // int length
         1: .line 33
            iinc 1 /* pos */ 4
         2: .line 34
            new io.vertx.core.json.JsonObject
            dup
            aload 2 /* buffer */
            iload 1 /* pos */
            iload 1 /* pos */
            iload 3 /* length */
            iadd
            invokeinterface io.vertx.core.buffer.Buffer.slice:(II)Lio/vertx/core/buffer/Buffer;
            invokespecial io.vertx.core.json.JsonObject.<init>:(Lio/vertx/core/buffer/Buffer;)V
            areturn
        end local 3 // int length
        end local 2 // io.vertx.core.buffer.Buffer buffer
        end local 1 // int pos
        end local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/eventbus/impl/codecs/JsonObjectMessageCodec;
            0    3     1     pos  I
            0    3     2  buffer  Lio/vertx/core/buffer/Buffer;
            1    3     3  length  I
    MethodParameters:
        Name  Flags
      pos     
      buffer  

  public io.vertx.core.json.JsonObject transform(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
        start local 1 // io.vertx.core.json.JsonObject jsonObject
         0: .line 39
            aload 1 /* jsonObject */
            invokevirtual io.vertx.core.json.JsonObject.copy:()Lio/vertx/core/json/JsonObject;
            areturn
        end local 1 // io.vertx.core.json.JsonObject jsonObject
        end local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/core/eventbus/impl/codecs/JsonObjectMessageCodec;
            0    1     1  jsonObject  Lio/vertx/core/json/JsonObject;
    MethodParameters:
            Name  Flags
      jsonObject  

  public java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
         0: .line 44
            ldc "jsonobject"
            areturn
        end local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/codecs/JsonObjectMessageCodec;

  public byte systemCodecID();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
         0: .line 49
            bipush 13
            ireturn
        end local 0 // io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/codecs/JsonObjectMessageCodec;

  public void encodeToWire(io.vertx.core.buffer.Buffer, java.lang.Object);
    descriptor: (Lio/vertx/core/buffer/Buffer;Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            checkcast io.vertx.core.json.JsonObject
            invokevirtual io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec.encodeToWire:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/json/JsonObject;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object transform(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.json.JsonObject
            invokevirtual io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec.transform:(Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object decodeFromWire(int, io.vertx.core.buffer.Buffer);
    descriptor: (ILio/vertx/core/buffer/Buffer;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            invokevirtual io.vertx.core.eventbus.impl.codecs.JsonObjectMessageCodec.decodeFromWire:(ILio/vertx/core/buffer/Buffer;)Lio/vertx/core/json/JsonObject;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lio/vertx/core/eventbus/MessageCodec<Lio/vertx/core/json/JsonObject;Lio/vertx/core/json/JsonObject;>;
SourceFile: "JsonObjectMessageCodec.java"