io.ray.serve.dag.DAGNodeBase Maven / Gradle / Ivy
package io.ray.serve.dag;
import java.util.Map;
import java.util.function.Function;
public interface DAGNodeBase {
T applyRecursive(Function fn);
DAGNodeBase applyAndReplaceAllChildNodes(Function fn);
DAGNodeBase copy(
Object[] newArgs, Map newOptions, Map newOtherArgsToResolve);
default DAGNodeBase copyImpl(
Object[] newArgs, Map newOptions, Map newOtherArgsToResolve) {
throw new UnsupportedOperationException();
}
String getStableUuid();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy