org.sputnik.ratelimit.util.EventConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-rate-limit Show documentation
Show all versions of java-rate-limit Show documentation
Java library to help to implement rate limits.
The newest version!
package org.sputnik.ratelimit.util;
import java.time.Duration;
import lombok.Value;
@Value
public class EventConfig {
protected final String eventId;
protected final long maxIntents;
protected final Duration minTime;
}