(IByteBuffer bb)
| 68 | } |
| 69 | |
| 70 | @Override |
| 71 | public void decode(IByteBuffer bb) { |
| 72 | term = bb.ReadLong(); |
| 73 | index = bb.ReadLong(); |
| 74 | log = logFactory.apply(bb.ReadInt4()); |
| 75 | log.decode(bb); |
| 76 | } |
| 77 | |
| 78 | public ByteBuffer encode() { |
| 79 | ByteBuffer bb = ByteBuffer.Allocate(64); |