mirror of https://github.com/apache/cassandra
add a javadoc comment on VIntCoding function
This commit is contained in:
parent
207c80c1fd
commit
8bc2fba3e5
|
|
@ -86,6 +86,8 @@ public class VIntCoding
|
||||||
* Note this method is the same as {@link #readUnsignedVInt(DataInput)},
|
* Note this method is the same as {@link #readUnsignedVInt(DataInput)},
|
||||||
* except that we do *not* block if there are not enough bytes in the buffer
|
* except that we do *not* block if there are not enough bytes in the buffer
|
||||||
* to reconstruct the value.
|
* to reconstruct the value.
|
||||||
|
*
|
||||||
|
* @return -1 if there are not enough bytes in the input to read the value; else, the vint unsigned value.
|
||||||
*/
|
*/
|
||||||
public static long readUnsignedVInt(ByteBuf input)
|
public static long readUnsignedVInt(ByteBuf input)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue