@Beta @GwtIncompatible public interface ByteProcessor<T>
processBytes(byte[], int, int)
will be called for each chunk of data that is read, and should return
false
when you want to stop processing.
Modifier and Type | Method and Description |
---|---|
T |
getResult()
Return the result of processing all the bytes.
|
boolean |
processBytes(byte[] buf,
int off,
int len)
This method will be called for each chunk of bytes in an input stream.
|
@CanIgnoreReturnValue boolean processBytes(byte[] buf, int off, int len) throws IOException
buf[off]
through buf[off + len - 1]
(inclusive).buf
- the byte array containing the data to processoff
- the initial offset into the arraylen
- the length of data to be processedIOException
Copyright © 2010–2019. All rights reserved.