HHH-7238 Remove unneeded cache listeners
This commit is contained in:
parent
5714a59e5e
commit
a334b9f0af
|
@ -2,8 +2,6 @@ package org.hibernate.cache.infinispan.collection;
|
|||
|
||||
import javax.transaction.TransactionManager;
|
||||
|
||||
import org.infinispan.notifications.Listener;
|
||||
|
||||
import org.hibernate.cache.CacheException;
|
||||
import org.hibernate.cache.infinispan.access.PutFromLoadValidator;
|
||||
import org.hibernate.cache.infinispan.impl.BaseTransactionalDataRegion;
|
||||
|
@ -19,7 +17,6 @@ import org.hibernate.cache.spi.access.CollectionRegionAccessStrategy;
|
|||
* @author Galder Zamarreño
|
||||
* @since 3.5
|
||||
*/
|
||||
@Listener
|
||||
public class CollectionRegionImpl extends BaseTransactionalDataRegion implements CollectionRegion {
|
||||
|
||||
public CollectionRegionImpl(CacheAdapter cacheAdapter, String name, CacheDataDescription metadata,
|
||||
|
|
|
@ -2,8 +2,6 @@ package org.hibernate.cache.infinispan.entity;
|
|||
|
||||
import javax.transaction.TransactionManager;
|
||||
|
||||
import org.infinispan.notifications.Listener;
|
||||
|
||||
import org.hibernate.cache.CacheException;
|
||||
import org.hibernate.cache.infinispan.access.PutFromLoadValidator;
|
||||
import org.hibernate.cache.infinispan.impl.BaseTransactionalDataRegion;
|
||||
|
@ -19,7 +17,6 @@ import org.hibernate.cache.spi.access.EntityRegionAccessStrategy;
|
|||
* @author Galder Zamarreño
|
||||
* @since 3.5
|
||||
*/
|
||||
@Listener
|
||||
public class EntityRegionImpl extends BaseTransactionalDataRegion implements EntityRegion {
|
||||
|
||||
public EntityRegionImpl(CacheAdapter cacheAdapter, String name, CacheDataDescription metadata,
|
||||
|
|
|
@ -46,7 +46,6 @@ public abstract class BaseRegion implements Region {
|
|||
this.transactionManager = transactionManager;
|
||||
this.replication = cacheAdapter.isClusteredReplication();
|
||||
this.address = this.cacheAdapter.getAddress();
|
||||
this.cacheAdapter.addListener(this);
|
||||
this.factory = factory;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,8 +4,6 @@ import java.util.Properties;
|
|||
import javax.transaction.Transaction;
|
||||
import javax.transaction.TransactionManager;
|
||||
|
||||
import org.infinispan.notifications.Listener;
|
||||
|
||||
import org.hibernate.cache.CacheException;
|
||||
import org.hibernate.cache.infinispan.impl.BaseTransactionalDataRegion;
|
||||
import org.hibernate.cache.infinispan.util.CacheAdapter;
|
||||
|
@ -18,7 +16,6 @@ import org.hibernate.cache.spi.RegionFactory;
|
|||
* @author Galder Zamarreño
|
||||
* @since 3.5
|
||||
*/
|
||||
@Listener
|
||||
public class QueryResultsRegionImpl extends BaseTransactionalDataRegion implements QueryResultsRegion {
|
||||
private boolean localOnly;
|
||||
|
||||
|
|
|
@ -99,6 +99,7 @@ public class TimestampsRegionImpl extends BaseGeneralDataRegion implements Times
|
|||
* @param event
|
||||
*/
|
||||
@CacheEntryModified
|
||||
@SuppressWarnings("unused")
|
||||
public void nodeModified(CacheEntryModifiedEvent event) {
|
||||
if (!event.isPre())
|
||||
localCache.put(event.getKey(), event.getValue());
|
||||
|
@ -110,6 +111,7 @@ public class TimestampsRegionImpl extends BaseGeneralDataRegion implements Times
|
|||
* @param event
|
||||
*/
|
||||
@CacheEntryRemoved
|
||||
@SuppressWarnings("unused")
|
||||
public void nodeRemoved(CacheEntryRemovedEvent event) {
|
||||
if (event.isPre()) return;
|
||||
localCache.remove(event.getKey());
|
||||
|
|
Loading…
Reference in New Issue