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

org.infinispan.eviction.impl.ActivationManagerStub Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.eviction.impl;

import org.infinispan.eviction.ActivationManager;
import org.infinispan.factories.annotations.SurvivesRestarts;

/**
 * @author Radim Vansa <[email protected]>
 */
@SurvivesRestarts
public class ActivationManagerStub implements ActivationManager {
	@Override
   public void onUpdate(Object key, boolean newEntry) {
   }

	@Override
   public void onRemove(Object key, boolean newEntry) {
   }

	@Override
   public long getActivationCount() {
      return 0;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy