io.datakernel.csp.dsl.WithBinaryChannelInput Maven / Gradle / Ivy
package io.datakernel.csp.dsl;
import io.datakernel.bytebuf.ByteBuf;
import io.datakernel.csp.binary.BinaryChannelSupplier;
public interface WithBinaryChannelInput extends WithChannelInput, HasBinaryChannelInput {
@SuppressWarnings("unchecked")
default B withInput(BinaryChannelSupplier byteBufsInput) {
getInput().set(byteBufsInput);
return (B) this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy