本文整理汇总了Java中javax.cache.event.EventType.REMOVED属性的典型用法代码示例。如果您正苦于以下问题:Java EventType.REMOVED属性的具体用法?Java EventType.REMOVED怎么用?Java EventType.REMOVED使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类javax.cache.event.EventType
的用法示例。
在下文中一共展示了EventType.REMOVED属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onEntryRemoved
void onEntryRemoved(K key, V oldValue) {
if (onRemove) {
BlazingCacheCacheEntryEvent event = new BlazingCacheCacheEntryEvent(key, oldValue, oldValue, parent, EventType.REMOVED, true);
if (filter != null && !filter.evaluate(event)) {
return;
}
((CacheEntryRemovedListener) listener).onRemoved(Arrays.asList(event));
}
}
示例2: onEntryRemoved
@Override
public void onEntryRemoved(final Cache<K, V> c, final CacheEntry<K, V> e) {
if (e.getException() != null) {
return;
}
javax.cache.Cache<K,V> _jCache = getCache(c);
V val = extractValue(e.getValue());
EntryEvent<K, V> cee =
new EntryEventWithOldValue<K, V>(_jCache, EventType.REMOVED, e.getKey(), val, val);
asyncDispatcher.deliverAsyncEvent(cee);
for (Listener<K,V> t : removedListener) {
t.fire(cee);
}
}
示例3: DeleteAction
public DeleteAction(K key)
{
super(key, null, EventType.REMOVED);
}
示例4: AbstractJCacheTest
protected AbstractJCacheTest(String cacheName) {
this(cacheName, EventType.CREATED, EventType.UPDATED, EventType.REMOVED, EventType.EXPIRED);
}
示例5: getEventType
@Override
public EventType getEventType() {
return EventType.REMOVED;
}