Constructor and Description |
---|
LimitByteStore(ByteStore base,
long limit)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Tidies up.
|
void |
copy(OutputStream out)
Takes all the data written so far into this store's sink stream
and copies it to a destination stream.
|
long |
getLength()
Returns the number of bytes currently stored in this object.
|
OutputStream |
getOutputStream()
Returns an output stream which can be used to write to the store.
|
ByteBuffer[] |
toByteBuffers()
Returns an array of byte buffers containing the bytes written
to this store.
|
public LimitByteStore(ByteStore base, long limit)
base
- base byte storelimit
- maximum capacity of this store in bytespublic OutputStream getOutputStream()
ByteStore
BufferedOutputStream
for efficiency if required.getOutputStream
in interface ByteStore
public long getLength()
ByteStore
public void copy(OutputStream out) throws IOException
ByteStore
copy
in interface ByteStore
out
- data destination streamIOException
public ByteBuffer[] toByteBuffers() throws IOException
ByteStore
Integer.MAX_VALUE
, more than one will be
required. The limit of each buffer indicates the
number of bytes it contains.
Usual usage will be to write all data, then call this method once; this model may affect implementation decisions about efficiency.
toByteBuffers
in interface ByteStore
IOException
- if there is an I/O errorCopyright © 2024 Central Laboratory of the Research Councils. All Rights Reserved.