Add reset() and position() to CodedOutputByteBufferNano.
Change-Id: Ie2a9e36276ac35e10b3f8d379b5742d50a0374e9
This commit is contained in:
parent
2712c42136
commit
41f0294cd6
1 changed files with 17 additions and 0 deletions
|
@ -898,6 +898,23 @@ public final class CodedOutputByteBufferNano {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the position within the internal buffer.
|
||||
*/
|
||||
public int position() {
|
||||
return buffer.position();
|
||||
}
|
||||
|
||||
/**
|
||||
* Resets the position within the internal buffer to zero.
|
||||
*
|
||||
* @see #position
|
||||
* @see #spaceLeft
|
||||
*/
|
||||
public void reset() {
|
||||
buffer.clear();
|
||||
}
|
||||
|
||||
/**
|
||||
* If you create a CodedOutputStream around a simple flat array, you must
|
||||
* not attempt to write more bytes than the array has space. Otherwise,
|
||||
|
|
Loading…
Add table
Reference in a new issue