public class BasicOutputBuffer extends OutputBuffer
Constructor and Description |
---|
BasicOutputBuffer()
Construct an instance with a default initial byte array size.
|
BasicOutputBuffer(int initialSize)
Construct an instance with the specified initial byte array size.
|
Modifier and Type | Method and Description |
---|---|
void |
close() |
java.util.List<ByteBuf> |
getByteBuffers()
Get a list of byte buffers that are prepared to be read from; in other words, whose position is 0 and whose limit is the number of
bytes that should read.
|
byte[] |
getInternalBuffer()
Gets the internal buffer.
|
int |
getPosition()
Gets the current position in the stream.
|
int |
getSize()
Gets the current size of the stream in number of bytes.
|
int |
pipe(java.io.OutputStream out)
Pipe the contents of this output buffer into the given output stream
|
void |
truncateToPosition(int newPosition)
Truncates this stream to the new position.
|
void |
write(byte[] b) |
void |
writeByte(int value)
Write a single byte to the stream.
|
void |
writeBytes(byte[] bytes,
int offset,
int length)
Writes
length bytes from the byte array, starting at offset . |
size, toByteArray, toString, write, write, writeBytes, writeCString, writeDouble, writeInt, writeInt32, writeInt32, writeInt64, writeLong, writeObjectId, writeString
public BasicOutputBuffer()
public BasicOutputBuffer(int initialSize)
initialSize
- the initial size of the byte arraypublic byte[] getInternalBuffer()
public void write(byte[] b)
write
in class OutputBuffer
public void writeBytes(byte[] bytes, int offset, int length)
BsonOutput
length
bytes from the byte array, starting at offset
.bytes
- the non-null byte arrayoffset
- the offset to start writing fromlength
- the number of bytes to writepublic void writeByte(int value)
BsonOutput
value
- the valuepublic int getPosition()
BsonOutput
public int getSize()
BsonOutput
public int pipe(java.io.OutputStream out) throws java.io.IOException
OutputBuffer
pipe
in class OutputBuffer
out
- the stream to pipe tojava.io.IOException
- if the stream throws an exceptionpublic void truncateToPosition(int newPosition)
BsonOutput
truncateToPosition
in interface BsonOutput
truncateToPosition
in class OutputBuffer
newPosition
- the new position, which must be greater than or equal to 0 and less than the current size.public java.util.List<ByteBuf> getByteBuffers()
OutputBuffer
Note that the byte buffers may be read-only.
getByteBuffers
in class OutputBuffer
public void close()
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in interface BsonOutput
close
in class OutputBuffer
Copyright © 2010 - 2020 Adobe. All Rights Reserved