io.datakernel.csp.dsl.WithChannelOutput Maven / Gradle / Ivy
package io.datakernel.csp.dsl;
import io.datakernel.csp.ChannelConsumer;
public interface WithChannelOutput extends HasChannelOutput {
@SuppressWarnings("unchecked")
default B withOutput(ChannelConsumer output) {
getOutput().set(output);
return (B) this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy