org.infinispan.persistence.modifications.Modification Maven / Gradle / Ivy
package org.infinispan.persistence.modifications;
/**
* An interface that defines a {@link org.infinispan.persistence.spi.CacheWriter} modification
*
* @author Manik Surtani
* @since 4.0
*/
public interface Modification {
static enum Type {
STORE, REMOVE, CLEAR, LIST
}
Type getType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy