List of usage examples for io.netty.buffer ByteBuf getFloat
public abstract float getFloat(int index);
From source file:io.reactiverse.pgclient.impl.codec.DataTypeCodec.java
License:Apache License
private static Float binaryDecodeFLOAT4(int index, int len, ByteBuf buff) { return buff.getFloat(index); }