com.github.akurilov.commons.io.collection.IoBuffer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-commons Show documentation
Show all versions of java-commons Show documentation
Common functionality Java library
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();
}