All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.datakernel.datastream.csp.WithChannelToStream Maven / Gradle / Ivy

package io.datakernel.datastream.csp;

import io.datakernel.csp.ChannelSupplier;
import io.datakernel.csp.dsl.ChannelSupplierTransformer;
import io.datakernel.csp.dsl.WithChannelInput;
import io.datakernel.datastream.StreamSupplier;

public interface WithChannelToStream extends
		WithChannelInput, StreamSupplier,
		ChannelSupplierTransformer> {

	@Override
	default StreamSupplier transform(ChannelSupplier supplier) {
		getInput().set(supplier);
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy