Closed slaunay closed 8 years ago
It's not possible to read or write short values using the BufferCursor.
BufferCursor
Current workaround is to use *WriteByte[s] methods:
*WriteByte[s]
cursor.keyWriteBytes(new byte[] {0, 1}); cursor.valWriteByte((shortValue >> 8) & 0xff); cursor.valWriteByte(shortValue & 0xff);
Code change:
keyWriteShort(short)
keyShort(int)
valWriteShort(short)
valShort(int)
It's not possible to read or write short values using the
BufferCursor
.Current workaround is to use
*WriteByte[s]
methods:Code change:
keyWriteShort(short)
keyShort(int)
valWriteShort(short)
valShort(int)