io.datakernel.datastream.StreamSupplierTransformer Maven / Gradle / Ivy
package io.datakernel.datastream;
@FunctionalInterface
public interface StreamSupplierTransformer {
R transform(StreamSupplier supplier);
static StreamSupplierTransformer> identity() {
return supplier -> supplier;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy