io.quarkus.cache.runtime.UnresolvedUniValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cache Show documentation
Show all versions of quarkus-cache Show documentation
Enable application data caching in CDI beans
package io.quarkus.cache.runtime;
/**
* This value acts as a placeholder in the cache. It will be eventually replaced by the item emitted by the
* {@link io.smallrye.mutiny.Uni Uni} when it has been resolved.
*
* @deprecated This placeholder is not used anymore and will be removed at some time after Quarkus 3.0.
*/
@Deprecated
public class UnresolvedUniValue {
public static final UnresolvedUniValue INSTANCE = new UnresolvedUniValue();
private UnresolvedUniValue() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy