public static interface AppleSingleReader.ReadAtReporter
AppleSingleReader#readAt(int, int, String) method,
heaviliy modeled on the Consumer interface.| Modifier and Type | Method and Description |
|---|---|
void |
accept(int start,
byte[] data,
java.lang.String description)
Performs this operation on the given arguments.
|
default AppleSingleReader.ReadAtReporter |
andThen(AppleSingleReader.ReadAtReporter after)
Returns a composed
ReadAtReporter that performs, in sequence, this
operation followed by the after operation. |
void accept(int start,
byte[] data,
java.lang.String description)
start - the offset into the filedata - the specific data being processeddescription - descriptive text regarding the datadefault AppleSingleReader.ReadAtReporter andThen(AppleSingleReader.ReadAtReporter after)
ReadAtReporter that performs, in sequence, this
operation followed by the after operation. If performing either
operation throws an exception, it is relayed to the caller of the
composed operation. If performing this operation throws an exception,
the after operation will not be performed.after - the operation to perform after this operationReadAtReporter that performs in sequence this
operation followed by the after operationjava.lang.NullPointerException - if after is null