
org.infinispan.api.common.events.counter.CounterEvent Maven / Gradle / Ivy
package org.infinispan.api.common.events.counter;
/**
* @since 14.0
*/
public interface CounterEvent {
/**
* @return the previous value.
*/
long getOldValue();
/**
* @return the previous state.
*/
CounterState getOldState();
/**
* @return the counter value.
*/
long getNewValue();
/**
* @return the counter state.
*/
CounterState getNewState();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy