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

com.databricks.sdk.core.retry.RetryStrategy Maven / Gradle / Ivy

There is a newer version: 0.38.0
Show newest version
package com.databricks.sdk.core.retry;

import com.databricks.sdk.core.DatabricksError;

/** This interface is used to determine if a request should be retried. */
public interface RetryStrategy {
  /**
   * This method is used to determine if a request should be retried.
   *
   * @param databricksError The DatabricksError wrapped response/error object.
   * @return true if the request should be retried, false otherwise.
   */
  boolean isRetriable(DatabricksError databricksError);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy