
io.muserver.RateLimitRejectionAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mu-server Show documentation
Show all versions of mu-server Show documentation
A simple but powerful web server framework
The newest version!
package io.muserver;
/**
* Specifies what to do when a rate limit is exceeded
*/
public enum RateLimitRejectionAction {
/**
* Nothing happens except the event is logged. Useful to detect when a rate limit would be exceeded for a given system without causing any impact.
*/
IGNORE,
/**
* An HTTP 429 response is sent to the client
*/
SEND_429
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy