congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Backoff
Code IndexAdd Tabnine to your IDE (free)

How to use
Backoff
in
com.nurkiewicz.asyncretry.backoff

Best Java code snippets using com.nurkiewicz.asyncretry.backoff.Backoff (Showing top 20 results out of 315)

origin: nurkiewicz/async-retry

  @Override
  public long delayMillis(RetryContext context) {
    return Math.max(target.delayMillis(context), minDelayMillis);
  }
}
origin: nurkiewicz/async-retry

public AsyncRetryExecutor withUniformJitter(long range) {
  return this.withBackoff(this.backoff.withUniformJitter(range));
}
origin: nurkiewicz/async-retry

public AsyncRetryExecutor withProportionalJitter() {
  return this.withBackoff(this.backoff.withProportionalJitter());
}
origin: nurkiewicz/async-retry

public AsyncRetryExecutor withMinDelay(long minDelayMillis) {
  return this.withBackoff(this.backoff.withMinDelay(minDelayMillis));
}
origin: nurkiewicz/async-retry

public AsyncRetryExecutor withMaxDelay(long maxDelayMillis) {
  return this.withBackoff(this.backoff.withMaxDelay(maxDelayMillis));
}
origin: nurkiewicz/async-retry

public AsyncRetryExecutor firstRetryNoDelay() {
  return this.withBackoff(this.backoff.withFirstRetryNoDelay());
}
origin: nurkiewicz/async-retry

public AsyncRetryExecutor withUniformJitter() {
  return this.withBackoff(this.backoff.withUniformJitter());
}
origin: com.nurkiewicz.asyncretry/asyncretry

public AsyncRetryExecutor withProportionalJitter(double multiplier) {
  return this.withBackoff(this.backoff.withProportionalJitter(multiplier));
}
origin: com.nurkiewicz.asyncretry/asyncretry

public AsyncRetryExecutor withMinDelay(long minDelayMillis) {
  return this.withBackoff(this.backoff.withMinDelay(minDelayMillis));
}
origin: com.nurkiewicz.asyncretry/asyncretry

public AsyncRetryExecutor withMaxDelay(long maxDelayMillis) {
  return this.withBackoff(this.backoff.withMaxDelay(maxDelayMillis));
}
origin: com.nurkiewicz.asyncretry/asyncretry

public AsyncRetryExecutor firstRetryNoDelay() {
  return this.withBackoff(this.backoff.withFirstRetryNoDelay());
}
origin: nurkiewicz/async-retry

  @Override
  public long delayMillis(RetryContext context) {
    return Math.min(target.delayMillis(context), maxDelayMillis);
  }
}
origin: com.nurkiewicz.asyncretry/asyncretry

public AsyncRetryExecutor withUniformJitter() {
  return this.withBackoff(this.backoff.withUniformJitter());
}
origin: nurkiewicz/async-retry

public AsyncRetryExecutor withProportionalJitter(double multiplier) {
  return this.withBackoff(this.backoff.withProportionalJitter(multiplier));
}
origin: com.nurkiewicz.asyncretry/asyncretry

  @Override
  public long delayMillis(RetryContext context) {
    return Math.min(target.delayMillis(context), maxDelayMillis);
  }
}
origin: com.nurkiewicz.asyncretry/asyncretry

public AsyncRetryExecutor withUniformJitter(long range) {
  return this.withBackoff(this.backoff.withUniformJitter(range));
}
origin: com.nurkiewicz.asyncretry/asyncretry

public AsyncRetryExecutor withProportionalJitter() {
  return this.withBackoff(this.backoff.withProportionalJitter());
}
origin: com.nurkiewicz.asyncretry/asyncretry-jdk7

  @Override
  public long delayMillis(RetryContext context) {
    return Math.max(target.delayMillis(context), minDelayMillis);
  }
}
origin: com.nurkiewicz.asyncretry/asyncretry

  @Override
  public long delayMillis(RetryContext context) {
    return Math.max(target.delayMillis(context), minDelayMillis);
  }
}
origin: com.nurkiewicz.asyncretry/asyncretry-jdk7

  @Override
  public long delayMillis(RetryContext context) {
    return Math.min(target.delayMillis(context), maxDelayMillis);
  }
}
com.nurkiewicz.asyncretry.backoffBackoff

Most used methods

  • delayMillis
  • withFirstRetryNoDelay
  • withMaxDelay
  • withMinDelay
  • withProportionalJitter
  • withUniformJitter

Popular in Java

  • Reactive rest calls using spring rest template
  • setRequestProperty (URLConnection)
  • getSharedPreferences (Context)
  • compareTo (BigDecimal)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Path (java.nio.file)
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • JFrame (javax.swing)
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now