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

dido.operators.StreamJoin Maven / Gradle / Ivy

The newest version!
package dido.operators;

import dido.data.GenericData;
import dido.data.IndexedData;

import java.util.function.Consumer;

/**
 * Something that can join two streams of {@link dido.data.IndexedData} (not Java {@link java.util.stream.Stream}s).
 *
 *
 * @param  The field type.
 */
public interface StreamJoin {

    Consumer> getPrimary();

    Consumer> getSecondary();

    void setTo(Consumer> to);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy