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

com.netflix.astyanax.test.IncreasingRateSupplier Maven / Gradle / Ivy

There is a newer version: 3.10.2
Show newest version
package com.netflix.astyanax.test;

import com.google.common.base.Supplier;

public class IncreasingRateSupplier implements Supplier{
    private int rate;
    private final long delta;
    
    public IncreasingRateSupplier(int initialRate, int delta) {
        this.rate = initialRate;
        this.delta = delta;
    }
    
    public Integer get() {
        rate += this.delta;
        return rate;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy