Home | History | Annotate | Download | only in direct

Lines Matching defs:Consumer

42     private final Consumer consumer;
53 public interface Consumer {
70 * Informs consumer that an exception occurred while processing
78 * Informs consumer that processing of an archive file has begun.
92 * @param consumer {@code non-null;} callback interface
94 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) {
97 this.consumer = consumer;
104 * from {@code Consumer.processFileBytes()}.
135 return consumer.processFileBytes(path, file.lastModified(), bytes);
137 consumer.onException(ex);
222 consumer.onProcessArchiveStart(file);
245 any |= consumer.processFileBytes(path, one.getTime(), bytes);