org.ehcache.impl.internal.events.CacheEventDispatcherFactoryImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
End-user ehcache3 jar artifact
/*
* Copyright Terracotta, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ehcache.impl.internal.events;
import org.ehcache.impl.config.event.CacheEventDispatcherFactoryConfiguration;
import org.ehcache.impl.config.event.DefaultCacheEventDispatcherConfiguration;
import org.ehcache.core.events.CacheEventDispatcherFactory;
import org.ehcache.core.events.CacheEventDispatcher;
import org.ehcache.impl.events.CacheEventDispatcherImpl;
import org.ehcache.spi.service.ServiceProvider;
import org.ehcache.core.spi.store.Store;
import org.ehcache.core.spi.service.ExecutionService;
import org.ehcache.spi.service.Service;
import org.ehcache.spi.service.ServiceConfiguration;
import org.ehcache.spi.service.ServiceDependencies;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.LinkedBlockingQueue;
import static org.ehcache.core.spi.service.ServiceUtils.findSingletonAmongst;
/**
* {@link CacheEventDispatcher} implementation that shares a single {@link ExecutorService} for unordered firing
* between {@link org.ehcache.Cache}s of a given {@link org.ehcache.CacheManager}. For ordered firing, a unique
* single threaded {@link ExecutorService} is handed to each cache.
*/
@ServiceDependencies(ExecutionService.class)
public class CacheEventDispatcherFactoryImpl implements CacheEventDispatcherFactory {
private final String defaultThreadPoolAlias;
private volatile ExecutionService executionService;
public CacheEventDispatcherFactoryImpl() {
this.defaultThreadPoolAlias = null;
}
public CacheEventDispatcherFactoryImpl(CacheEventDispatcherFactoryConfiguration configuration) {
this.defaultThreadPoolAlias = configuration.getThreadPoolAlias();
}
@Override
public void start(ServiceProvider serviceProvider) {
executionService = serviceProvider.getService(ExecutionService.class);
}
@Override
public void stop() {
}
@Override
public CacheEventDispatcher createCacheEventDispatcher(Store store, ServiceConfiguration, ?>... serviceConfigs) {
String threadPoolAlias = defaultThreadPoolAlias;
DefaultCacheEventDispatcherConfiguration config = findSingletonAmongst(DefaultCacheEventDispatcherConfiguration.class, (Object[]) serviceConfigs);
if (config != null) {
threadPoolAlias = config.getThreadPoolAlias();
}
ExecutorService orderedExecutor = executionService.getOrderedExecutor(threadPoolAlias, new LinkedBlockingQueue<>());
ExecutorService unOrderedExecutor = executionService.getUnorderedExecutor(threadPoolAlias, new LinkedBlockingQueue<>());
return new CacheEventDispatcherImpl<>(unOrderedExecutor, orderedExecutor);
}
@Override
public void releaseCacheEventDispatcher(CacheEventDispatcher eventDispatcher) {
if (eventDispatcher != null) {
eventDispatcher.shutdown();
}
}
}