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

com.transferwise.common.spyql.utils.SimpleThrottler Maven / Gradle / Ivy

package com.transferwise.common.spyql.utils;

import java.time.Clock;
import java.time.Duration;
import lombok.extern.slf4j.Slf4j;

@Slf4j
public class SimpleThrottler {

  private long bucketTime = -1;
  private long errorsInBucket;

  private long ratePeriodMs;
  private long rate;

  private Clock clock;

  public SimpleThrottler(Duration ratePeriod, long rate) {
    this.ratePeriodMs = ratePeriod.toMillis();
    this.rate = rate;
    this.clock = Clock.systemDefaultZone();
  }

  public synchronized boolean doThrottleAnEvent() {
    if (bucketTime == -1 || clock.millis() - bucketTime >= ratePeriodMs) {
      bucketTime = clock.millis();
      errorsInBucket = 0;
    }
    errorsInBucket++;
    return errorsInBucket > rate;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy