public class io.vertx.core.eventbus.impl.codecs.ReplyExceptionMessageCodec implements io.vertx.core.eventbus.MessageCodec<io.vertx.core.eventbus.ReplyException, io.vertx.core.eventbus.ReplyException>
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: io.vertx.core.eventbus.impl.codecs.ReplyExceptionMessageCodec
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 0: aload 0
invokespecial java.lang.Object.<init>:()V
return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/eventbus/impl/codecs/ReplyExceptionMessageCodec;
public void encodeToWire(io.vertx.core.buffer.Buffer, io.vertx.core.eventbus.ReplyException);
descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/eventbus/ReplyException;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 1
aload 2
invokevirtual io.vertx.core.eventbus.ReplyException.failureType:()Lio/vertx/core/eventbus/ReplyFailure;
invokevirtual io.vertx.core.eventbus.ReplyFailure.toInt:()I
i2b
invokeinterface io.vertx.core.buffer.Buffer.appendByte:(B)Lio/vertx/core/buffer/Buffer;
pop
1: aload 1
aload 2
invokevirtual io.vertx.core.eventbus.ReplyException.failureCode:()I
invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
pop
2: aload 2
invokevirtual io.vertx.core.eventbus.ReplyException.getMessage:()Ljava/lang/String;
ifnonnull 5
3: aload 1
iconst_0
invokeinterface io.vertx.core.buffer.Buffer.appendByte:(B)Lio/vertx/core/buffer/Buffer;
pop
4: goto 9
5: StackMap locals:
StackMap stack:
aload 1
iconst_1
invokeinterface io.vertx.core.buffer.Buffer.appendByte:(B)Lio/vertx/core/buffer/Buffer;
pop
6: aload 2
invokevirtual io.vertx.core.eventbus.ReplyException.getMessage:()Ljava/lang/String;
getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
astore 3
start local 3 7: aload 1
aload 3
arraylength
invokeinterface io.vertx.core.buffer.Buffer.appendInt:(I)Lio/vertx/core/buffer/Buffer;
pop
8: aload 1
aload 3
invokeinterface io.vertx.core.buffer.Buffer.appendBytes:([B)Lio/vertx/core/buffer/Buffer;
pop
end local 3 9: StackMap locals:
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lio/vertx/core/eventbus/impl/codecs/ReplyExceptionMessageCodec;
0 10 1 buffer Lio/vertx/core/buffer/Buffer;
0 10 2 body Lio/vertx/core/eventbus/ReplyException;
7 9 3 encoded [B
MethodParameters:
Name Flags
buffer
body
public io.vertx.core.eventbus.ReplyException decodeFromWire(int, io.vertx.core.buffer.Buffer);
descriptor: (ILio/vertx/core/buffer/Buffer;)Lio/vertx/core/eventbus/ReplyException;
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=10, args_size=3
start local 0 start local 1 start local 2 0: aload 2
iload 1
invokeinterface io.vertx.core.buffer.Buffer.getByte:(I)B
istore 3
start local 3 1: iload 3
invokestatic io.vertx.core.eventbus.ReplyFailure.fromInt:(I)Lio/vertx/core/eventbus/ReplyFailure;
astore 4
start local 4 2: iinc 1 1
3: aload 2
iload 1
invokeinterface io.vertx.core.buffer.Buffer.getInt:(I)I
istore 5
start local 5 4: iinc 1 4
5: aload 2
iload 1
invokeinterface io.vertx.core.buffer.Buffer.getByte:(I)B
ifne 6
iconst_1
goto 7
StackMap locals: int io.vertx.core.eventbus.ReplyFailure int
StackMap stack:
6: iconst_0
StackMap locals:
StackMap stack: int
7: istore 6
start local 6 8: iload 6
ifne 15
9: iinc 1 1
10: aload 2
iload 1
invokeinterface io.vertx.core.buffer.Buffer.getInt:(I)I
istore 8
start local 8 11: iinc 1 4
12: aload 2
iload 1
iload 1
iload 8
iadd
invokeinterface io.vertx.core.buffer.Buffer.getBytes:(II)[B
astore 9
start local 9 13: new java.lang.String
dup
aload 9
getstatic io.netty.util.CharsetUtil.UTF_8:Ljava/nio/charset/Charset;
invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
astore 7
end local 9 end local 8 start local 7 14: goto 16
end local 7 15: StackMap locals: int
StackMap stack:
aconst_null
astore 7
start local 7 16: StackMap locals: java.lang.String
StackMap stack:
new io.vertx.core.eventbus.ReplyException
dup
aload 4
iload 5
aload 7
invokespecial io.vertx.core.eventbus.ReplyException.<init>:(Lio/vertx/core/eventbus/ReplyFailure;ILjava/lang/String;)V
areturn
end local 7 end local 6 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 17 0 this Lio/vertx/core/eventbus/impl/codecs/ReplyExceptionMessageCodec;
0 17 1 pos I
0 17 2 buffer Lio/vertx/core/buffer/Buffer;
1 17 3 i I
2 17 4 rf Lio/vertx/core/eventbus/ReplyFailure;
4 17 5 failureCode I
8 17 6 isNull Z
14 15 7 message Ljava/lang/String;
16 17 7 message Ljava/lang/String;
11 14 8 strLength I
13 14 9 bytes [B
MethodParameters:
Name Flags
pos
buffer
public io.vertx.core.eventbus.ReplyException transform(io.vertx.core.eventbus.ReplyException);
descriptor: (Lio/vertx/core/eventbus/ReplyException;)Lio/vertx/core/eventbus/ReplyException;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=2, args_size=2
start local 0 start local 1 0: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/eventbus/impl/codecs/ReplyExceptionMessageCodec;
0 1 1 exception Lio/vertx/core/eventbus/ReplyException;
MethodParameters:
Name Flags
exception
public java.lang.String name();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: ldc "replyexception"
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/eventbus/impl/codecs/ReplyExceptionMessageCodec;
public byte systemCodecID();
descriptor: ()B
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: bipush 15
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/eventbus/impl/codecs/ReplyExceptionMessageCodec;
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: aload 0
aload 1
aload 2
checkcast io.vertx.core.eventbus.ReplyException
invokevirtual io.vertx.core.eventbus.impl.codecs.ReplyExceptionMessageCodec.encodeToWire:(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/eventbus/ReplyException;)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: aload 0
aload 1
checkcast io.vertx.core.eventbus.ReplyException
invokevirtual io.vertx.core.eventbus.impl.codecs.ReplyExceptionMessageCodec.transform:(Lio/vertx/core/eventbus/ReplyException;)Lio/vertx/core/eventbus/ReplyException;
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: aload 0
iload 1
aload 2
invokevirtual io.vertx.core.eventbus.impl.codecs.ReplyExceptionMessageCodec.decodeFromWire:(ILio/vertx/core/buffer/Buffer;)Lio/vertx/core/eventbus/ReplyException;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
Signature: Ljava/lang/Object;Lio/vertx/core/eventbus/MessageCodec<Lio/vertx/core/eventbus/ReplyException;Lio/vertx/core/eventbus/ReplyException;>;
SourceFile: "ReplyExceptionMessageCodec.java"