Home | History | Annotate | Download | only in cache

Lines Matching refs:notification

630       public void onRemoval(RemovalNotification<Object, Object> notification) {
870 RemovalNotification<K, V> notification = listener.remove();
871 assertSame(key, notification.getKey());
872 assertSame(value, notification.getValue());
873 assertSame(cause, notification.getCause());
1253 RemovalNotification<Object, Object> notification = listener.remove();
1254 assertEquals(immutableEntry(key, value2), notification);
1255 assertEquals(RemovalCause.REPLACED, notification.getCause());
1280 notification = listener.remove();
1281 assertEquals(immutableEntry(key, value3), notification);
1282 assertEquals(RemovalCause.REPLACED, notification.getCause());
1294 notification = listener.remove();
1295 assertEquals(immutableEntry(key, null), notification);
1296 assertEquals(RemovalCause.COLLECTED, notification.getCause());
1749 // no notification sent with removeLoadingValue
1776 RemovalNotification<K, V> notification = map.removalNotificationQueue.poll();
1777 assertSame(key, notification.getKey());
1778 assertSame(value, notification.getValue());
2689 public void onRemoval(RemovalNotification<K, V> notification) {}