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