(@NotNull ByteBuffer bb)
| 112 | } |
| 113 | |
| 114 | @Override |
| 115 | public void encode(@NotNull ByteBuffer bb) { |
| 116 | bb.WriteByte((1 << ByteBuffer.TAG_SHIFT) + ByteBuffer.LIST); // varId=1, type=LIST |
| 117 | bb.WriteListType(2, ByteBuffer.INTEGER); // LIST.size=2, LIST.type=INTEGER |
| 118 | bb.WriteLong(high); |
| 119 | bb.WriteLong(low); |
| 120 | bb.WriteByte(0); // end of bean |
| 121 | } |
| 122 | |
| 123 | @Override |
| 124 | public void decode(@NotNull IByteBuffer bb) { |