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

tech.ytsaurus.core.operations.Yield Maven / Gradle / Ivy

package tech.ytsaurus.core.operations;

import java.io.Closeable;

public interface Yield extends Closeable {

    default void yield(T value) {
        this.yield(0, value);
    }

    void yield(int index, T value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy