2021-10-15 22:03:53 +02:00
|
|
|
package it.cavallium.dbengine.lucene;
|
|
|
|
|
2022-03-16 13:47:56 +01:00
|
|
|
import io.netty5.buffer.ByteBuf;
|
2021-10-15 22:03:53 +02:00
|
|
|
import java.util.function.Function;
|
|
|
|
|
|
|
|
public class IntCodec implements LMDBCodec<Integer> {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ByteBuf serialize(Function<Integer, ByteBuf> allocator, Integer data) {
|
|
|
|
return allocator.apply(Integer.BYTES).writeInt(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Integer deserialize(ByteBuf b) {
|
|
|
|
return b.readInt();
|
|
|
|
}
|
|
|
|
}
|