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

io.quarkus.cache.runtime.UnresolvedUniValue Maven / Gradle / Ivy

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