org.infinispan.persistence.spi.FlagAffectedStore Maven / Gradle / Ivy
package org.infinispan.persistence.spi;
import java.util.Set;
import org.infinispan.context.Flag;
/**
* Implemented by stores that can skip writes based on certain flags present in the invocation.
* @since 9.0
*/
public interface FlagAffectedStore extends ExternalStore {
boolean shouldWrite(Set commandFlags);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy