de.otto.edison.status.domain.Performance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edison-status Show documentation
Show all versions of edison-status Show documentation
Status library of the edison-microservice project.
package de.otto.edison.status.domain;
import de.otto.edison.annotations.Beta;
/**
* Non-functional requirements regarding the performance of something this service is depending on.
*
*/
@Beta
public enum Performance {
/**
* Depending on your overall requirements, this might be something like < 20ms in the 99 percentile:
*/
HIGH,
/**
* Depending on your overall requirements, this might be something like < 200ms in the 99 percentile:
*/
MEDIUM,
/**
* Depending on your overall requirements, this might be something like < 2000ms in the 99 percentile:
*/
LOW,
/** Default value if no performance requirements where specified. */
NOT_SPECIFIED
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy