io.datakernel.csp.dsl.WithChannelInput Maven / Gradle / Ivy
package io.datakernel.csp.dsl;
import io.datakernel.csp.ChannelSupplier;
public interface WithChannelInput extends HasChannelInput {
@SuppressWarnings("unchecked")
default B withInput(ChannelSupplier input) {
getInput().set(input);
return (B) this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy