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

com.github.akurilov.commons.io.collection.IoBuffer Maven / Gradle / Ivy

There is a newer version: 2.3.6
Show newest version
package com.github.akurilov.commons.io.collection;

import com.github.akurilov.commons.io.Input;
import com.github.akurilov.commons.io.Output;

/**
 * An items buffer acting as input either output
 */
public interface IoBuffer
extends Input, Output {

	/**
	 * @return true if the buffer is empty
	 */
	boolean isEmpty();

	/**
	 * @return count of the items in the buffer
	 */
	int size();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy