use of javax.cache.configuration.MutableConfiguration in project hazelcast by hazelcast.
the class CacheListenerTest method testGetAndRemoveWithSyncListener_whenEntryNotExists.
@Test(timeout = 30000)
public void testGetAndRemoveWithSyncListener_whenEntryNotExists() {
CachingProvider cachingProvider = getCachingProvider();
CacheManager cacheManager = cachingProvider.getCacheManager();
CompleteConfiguration<String, String> config = new MutableConfiguration<String, String>().setTypes(String.class, String.class).addCacheEntryListenerConfiguration(new MutableCacheEntryListenerConfiguration<String, String>(FactoryBuilder.factoryOf(new TestListener(new AtomicInteger())), null, true, true));
Cache<String, String> cache = cacheManager.createCache(randomString(), config);
// there should not be any hanging due to sync listener
cache.getAndRemove(randomString());
}
use of javax.cache.configuration.MutableConfiguration in project hazelcast by hazelcast.
the class CacheListenerTest method testSyncListener.
@Test
public void testSyncListener() throws Exception {
CachingProvider cachingProvider = getCachingProvider();
CacheManager cacheManager = cachingProvider.getCacheManager();
final AtomicInteger counter = new AtomicInteger();
CompleteConfiguration<String, String> config = new MutableConfiguration<String, String>().setTypes(String.class, String.class).addCacheEntryListenerConfiguration(new MutableCacheEntryListenerConfiguration<String, String>(FactoryBuilder.factoryOf(new TestListener(counter)), null, true, true));
final Cache<String, String> cache = cacheManager.createCache("test", config);
final int threadCount = 10;
final int shutdownWaitTimeInSeconds = threadCount;
final int putCount = 1000;
final AtomicInteger actualPutCount = new AtomicInteger(0);
final CountDownLatch latch = new CountDownLatch(threadCount);
final AtomicBoolean shutdown = new AtomicBoolean(false);
for (int i = 0; i < threadCount; i++) {
new Thread() {
public void run() {
Random rand = new Random();
for (int i = 0; i < putCount && !shutdown.get(); i++) {
String key = String.valueOf(rand.nextInt(putCount));
String value = UUID.randomUUID().toString();
cache.put(key, value);
actualPutCount.incrementAndGet();
}
latch.countDown();
}
}.start();
}
if (!latch.await(ASSERT_TRUE_EVENTUALLY_TIMEOUT, TimeUnit.SECONDS)) {
shutdown.set(true);
if (!latch.await(shutdownWaitTimeInSeconds, TimeUnit.SECONDS)) {
fail("Cache operations have not finished in " + (ASSERT_TRUE_EVENTUALLY_TIMEOUT + shutdownWaitTimeInSeconds) + " seconds when sync listener is present!");
}
}
assertEquals(actualPutCount.get(), counter.get());
}
use of javax.cache.configuration.MutableConfiguration in project hazelcast by hazelcast.
the class CacheListenerTest method testRemoveIfSameWithSyncListener_whenEntryNotExists.
@Test(timeout = 30000)
public void testRemoveIfSameWithSyncListener_whenEntryNotExists() {
CachingProvider cachingProvider = getCachingProvider();
CacheManager cacheManager = cachingProvider.getCacheManager();
CompleteConfiguration<String, String> config = new MutableConfiguration<String, String>().setTypes(String.class, String.class).addCacheEntryListenerConfiguration(new MutableCacheEntryListenerConfiguration<String, String>(FactoryBuilder.factoryOf(new TestListener(new AtomicInteger())), null, true, true));
Cache<String, String> cache = cacheManager.createCache(randomString(), config);
// there should not be any hanging due to sync listener
cache.remove(randomString(), randomString());
}
use of javax.cache.configuration.MutableConfiguration in project hazelcast by hazelcast.
the class BasicCacheLiteMemberTest method testCachesDestroy.
@Test
public void testCachesDestroy() {
CacheManager cacheManager = instanceCachingProvider.getCacheManager();
CacheManager cacheManager2 = liteCachingProvider.getCacheManager();
MutableConfiguration configuration = new MutableConfiguration();
final Cache c1 = cacheManager.createCache("c1", configuration);
final Cache c2 = cacheManager2.getCache("c1");
c1.put("key", "value");
cacheManager.destroyCache("c1");
assertTrueEventually(new AssertTask() {
@Override
public void run() throws Exception {
try {
c2.get("key");
fail("get should throw IllegalStateException");
} catch (IllegalStateException e) {
//ignored as expected
}
}
});
}
use of javax.cache.configuration.MutableConfiguration in project camel by apache.
the class JCacheManager method getOrCreateCacheConfiguration.
private Configuration getOrCreateCacheConfiguration() {
if (configuration.getCacheConfiguration() != null) {
return configuration.getCacheConfiguration();
}
MutableConfiguration mutableConfiguration = new MutableConfiguration();
if (configuration.getCacheLoaderFactory() != null) {
mutableConfiguration.setCacheLoaderFactory(configuration.getCacheLoaderFactory());
}
if (configuration.getCacheWriterFactory() != null) {
mutableConfiguration.setCacheWriterFactory(configuration.getCacheWriterFactory());
}
if (configuration.getExpiryPolicyFactory() != null) {
mutableConfiguration.setExpiryPolicyFactory(configuration.getExpiryPolicyFactory());
}
mutableConfiguration.setManagementEnabled(configuration.isManagementEnabled());
mutableConfiguration.setStatisticsEnabled(configuration.isStatisticsEnabled());
mutableConfiguration.setReadThrough(configuration.isReadThrough());
mutableConfiguration.setStoreByValue(configuration.isStoreByValue());
mutableConfiguration.setWriteThrough(configuration.isWriteThrough());
return mutableConfiguration;
}
Aggregations