io.quarkiverse.openfga.client.model.ConsistencyPreference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-openfga-client-model Show documentation
Show all versions of quarkus-openfga-client-model Show documentation
OpenFGA Client API model classes
The newest version!
package io.quarkiverse.openfga.client.model;
public enum ConsistencyPreference {
// Default if not set. Behavior will be the same as MINIMIZE_LATENCY
UNSPECIFIED,
// Minimize latency at the potential expense of lower consistency.
MINIMIZE_LATENCY,
// Prefer higher consistency, at the potential expense of increased latency.
HIGHER_CONSISTENCY
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy