All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.l4.commons.io.ByteArrayConsumer Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
package se.l4.commons.io;

import java.io.IOException;

/**
 * Consumer of {@code byte[]} arrays.
 * 
 * @author Andreas Holstenson
 *
 */
public interface ByteArrayConsumer
{
	void consume(byte[] data, int offset, int length)
		throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy