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

io.ray.serve.dag.DAGNodeBase Maven / Gradle / Ivy

There is a newer version: 2.39.0
Show newest version
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