org.infinispan.cdi.embedded.event.cache.CacheEntriesEvictedAdapter Maven / Gradle / Ivy
package org.infinispan.cdi.embedded.event.cache;
import java.util.Map;
import javax.enterprise.event.Event;
import javax.enterprise.util.TypeLiteral;
import org.infinispan.Cache;
import org.infinispan.notifications.Listener;
import org.infinispan.notifications.cachelistener.annotation.CacheEntriesEvicted;
import org.infinispan.notifications.cachelistener.event.CacheEntriesEvictedEvent;
/**
* Event bridge for {@link org.infinispan.notifications.cachelistener.annotation.CacheEntriesEvicted}.
*
* @author Pete Muir
* @author Sebastian Laskawiec
* @see org.infinispan.notifications.Listener
* @see org.infinispan.notifications.cachelistener.annotation.CacheEntriesEvicted
*/
@Listener
public class CacheEntriesEvictedAdapter extends AbstractAdapter> {
/**
* CDI does not allow parametrized type for events (like
). This is why this wrapped needs to be
* introduced. To ensure type safety, this needs to be linked to parent class (in other words this class can not
* be static).
*/
private class CDICacheEntriesEvictedEvent implements CacheEntriesEvictedEvent {
private CacheEntriesEvictedEvent decoratedEvent;
private CDICacheEntriesEvictedEvent(CacheEntriesEvictedEvent decoratedEvent) {
this.decoratedEvent = decoratedEvent;
}
@Override
public Map getEntries() {
return decoratedEvent.getEntries();
}
@Override
public Type getType() {
return decoratedEvent.getType();
}
@Override
public boolean isPre() {
return decoratedEvent.isPre();
}
@Override
public Cache getCache() {
return decoratedEvent.getCache();
}
}
/**
* Needed for creating event bridge.
*/
public static final CacheEntriesEvictedEvent, ?> EMPTY = new CacheEntriesEvictedEvent
© 2015 - 2025 Weber Informatics LLC | Privacy Policy