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

de.otto.edison.status.domain.Performance Maven / Gradle / Ivy

There is a newer version: 0.82.2
Show newest version
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