DataSink.Factory
Constructor and Description |
---|
ByteArrayDataSink() |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the sink.
|
byte[] |
getData()
Returns the data written to the sink since the last call to
open(DataSpec) , or null if
open(DataSpec) has never been called. |
void |
open(DataSpec dataSpec)
Opens the sink to consume the specified data.
|
void |
write(byte[] buffer,
int offset,
int length)
Consumes the provided data.
|
public void open(DataSpec dataSpec) throws java.io.IOException
DataSink
Note: If an IOException
is thrown, callers must still call DataSink.close()
to
ensure that any partial effects of the invocation are cleaned up.
public void close() throws java.io.IOException
DataSink
Note: This method must be called even if the corresponding call to DataSink.open(DataSpec)
threw an IOException
. See DataSink.open(DataSpec)
for more details.
public void write(byte[] buffer, int offset, int length) throws java.io.IOException
DataSink
public byte[] getData()
open(DataSpec)
, or null if
open(DataSpec)
has never been called.