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

org.infinispan.commons.persistence.Store Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons.persistence;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Store. An annotation for identifying a persistent store and explicitly stating some of its characteristics.
 *
 * @author Ryan Emerson
 * @since 9.0
 * @deprecated since 11.0. To be removed in 14.0 ISPN-11866. Stores should utilise
 * {@link org.infinispan.persistence.spi.NonBlockingStore.Characteristic}s to specify a store's capabilities.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Deprecated(forRemoval = true)
public @interface Store {
   /**
    * Whether the store can be shared amongst nodes in a distributed/replicated cache
    */
   boolean shared() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy