public class io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec implements io.vertx.core.eventbus.MessageCodec<byte[], byte[]>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec
  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.ByteArrayMessageCodec this
         0: .line 20
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/codecs/ByteArrayMessageCodec;

  public void encodeToWire(io.vertx.core.buffer.Buffer, byte[]);
    descriptor: (Lio/vertx/core/buffer/Buffer;[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec this
        start local 1 // io.vertx.core.buffer.Buffer buffer
        start local 2 // byte[] byteArray
         0: .line 24
            aload 1 /* buffer */
            aload 2 /* byteArray */
            arraylength
            invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
            pop
         1: .line 25
            aload 1 /* buffer */
            aload 2 /* byteArray */
            invokeinterface io.vertx.core.buffer.Buffer.appendBytes:([B)Lio/vertx/core/buffer/Buffer;
            pop
         2: .line 26
            return
        end local 2 // byte[] byteArray
        end local 1 // io.vertx.core.buffer.Buffer buffer
        end local 0 // io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lio/vertx/core/eventbus/impl/codecs/ByteArrayMessageCodec;
            0    3     1     buffer  Lio/vertx/core/buffer/Buffer;
            0    3     2  byteArray  [B
    MethodParameters:
           Name  Flags
      buffer     
      byteArray  

  public byte[] decodeFromWire(int, io.vertx.core.buffer.Buffer);
    descriptor: (ILio/vertx/core/buffer/Buffer;)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec this
        start local 1 // int pos
        start local 2 // io.vertx.core.buffer.Buffer buffer
         0: .line 30
            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 31
            iinc 1 /* pos */ 4
         2: .line 32
            aload 2 /* buffer */
            iload 1 /* pos */
            iload 1 /* pos */
            iload 3 /* length */
            iadd
            invokeinterface io.vertx.core.buffer.Buffer.getBytes:(II)[B
            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.ByteArrayMessageCodec this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/eventbus/impl/codecs/ByteArrayMessageCodec;
            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 byte[] transform(byte[]);
    descriptor: ([B)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec this
        start local 1 // byte[] bytes
         0: .line 37
            aload 1 /* bytes */
            arraylength
            newarray 8
            astore 2 /* copied */
        start local 2 // byte[] copied
         1: .line 38
            aload 1 /* bytes */
            iconst_0
            aload 2 /* copied */
            iconst_0
            aload 1 /* bytes */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 39
            aload 2 /* copied */
            areturn
        end local 2 // byte[] copied
        end local 1 // byte[] bytes
        end local 0 // io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/vertx/core/eventbus/impl/codecs/ByteArrayMessageCodec;
            0    3     1   bytes  [B
            1    3     2  copied  [B
    MethodParameters:
       Name  Flags
      bytes  

  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.ByteArrayMessageCodec this
         0: .line 44
            ldc "bytearray"
            areturn
        end local 0 // io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/codecs/ByteArrayMessageCodec;

  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.ByteArrayMessageCodec this
         0: .line 49
            bipush 12
            ireturn
        end local 0 // io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/eventbus/impl/codecs/ByteArrayMessageCodec;

  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 byte[]
            invokevirtual io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec.encodeToWire:(Lio/vertx/core/buffer/Buffer;[B)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 byte[]
            invokevirtual io.vertx.core.eventbus.impl.codecs.ByteArrayMessageCodec.transform:([B)[B
            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.ByteArrayMessageCodec.decodeFromWire:(ILio/vertx/core/buffer/Buffer;)[B
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lio/vertx/core/eventbus/MessageCodec<[B[B>;
SourceFile: "ByteArrayMessageCodec.java"