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

org.xillium.data.Collector Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.xillium.data;


/**
 * An object collector.
 */
public interface Collector {
    /**
     * returns false to stop data collection.
     *
     * @param object the object to add to the collection
     * @return whether the collection should continue
     */
    public boolean add(T object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy