/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a full listing of * individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.cdi.test.event; import org.infinispan.notifications.cachelistener.event.CacheEntryCreatedEvent; import org.infinispan.notifications.cachelistener.event.CacheEntryRemovedEvent; import org.infinispan.notifications.cachemanagerlistener.event.CacheStartedEvent; import org.infinispan.notifications.cachemanagerlistener.event.CacheStoppedEvent; import javax.enterprise.context.ApplicationScoped; import javax.enterprise.event.Observes; /** * @author Pete Muir */ @ApplicationScoped public class Cache1Observers { private CacheStartedEvent cacheStartedEvent; private int cacheStartedEventCount; private int cacheStoppedEventCount; private CacheStoppedEvent cacheStoppedEvent; private int cacheEntryCreatedEventCount; private CacheEntryCreatedEvent cacheEntryCreatedEvent; private int cacheEntryRemovedEventCount; private CacheEntryRemovedEvent cacheEntryRemovedEvent; /** * Observe the cache started event for the cache associated with @Cache1 */ void observeCacheStarted(@Observes @Cache1 CacheStartedEvent event) { this.cacheStartedEventCount++; this.cacheStartedEvent = event; } /** * Observe the cache stopped event for the cache associated with @Cache1 */ void observeCacheStopped(@Observes @Cache1 CacheStoppedEvent event) { this.cacheStoppedEventCount++; this.cacheStoppedEvent = event; } /** * <p>Observe the cache entry created event for the cache associated with @Cache1</p> * * <p>Get's called once (before) with pre false, once (after) with pre true</p> */ void observeCacheEntryCreated(@Observes @Cache1 CacheEntryCreatedEvent event) { if (!event.isPre()) { this.cacheEntryCreatedEventCount++; this.cacheEntryCreatedEvent = event; } } /** * Observe the cache entry removed event for the cache associated with @Cache1 */ void observeCacheEntryRemoved(@Observes @Cache1 CacheEntryRemovedEvent event) { if (event.isPre()) { this.cacheEntryRemovedEventCount++; this.cacheEntryRemovedEvent = event; } } public CacheStartedEvent getCacheStartedEvent() { return cacheStartedEvent; } public int getCacheStartedEventCount() { return cacheStartedEventCount; } public CacheStoppedEvent getCacheStoppedEvent() { return cacheStoppedEvent; } public int getCacheStoppedEventCount() { return cacheStoppedEventCount; } public CacheEntryCreatedEvent getCacheEntryCreatedEvent() { return cacheEntryCreatedEvent; } public int getCacheEntryCreatedEventCount() { return cacheEntryCreatedEventCount; } public CacheEntryRemovedEvent getCacheEntryRemovedEvent() { return cacheEntryRemovedEvent; } public int getCacheEntryRemovedEventCount() { return cacheEntryRemovedEventCount; } }