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

io.ray.serve.handle.HandleOptions Maven / Gradle / Ivy

There is a newer version: 2.39.0
Show newest version
package io.ray.serve.handle;

import java.io.Serializable;

/** Options for each ServeHandle instances. These fields are immutable. */
public class HandleOptions implements Serializable {

  private static final long serialVersionUID = -279077795726949172L;
  private String methodName = "call";

  public String getMethodName() {
    return methodName;
  }

  public void setMethodName(String methodName) {
    this.methodName = methodName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy