Home | History | Annotate | Download | only in collect

Lines Matching refs:notification

295       public void onRemoval(RemovalNotification<Object, Object> notification) {}
427 RemovalNotification<K, V> notification = listener.remove();
428 assertSame(key, notification.getKey());
429 assertSame(value, notification.getValue());
430 assertSame(cause, notification.getCause());
1190 // no notification sent with clearValue
1208 RemovalNotification<K, V> notification = map.removalNotificationQueue.poll();
1209 assertSame(key, notification.getKey());
1210 assertSame(value, notification.getValue());
1691 public void onRemoval(RemovalNotification<K, V> notification) {
1693 lastKey = notification.getKey();
1694 lastValue = notification.getValue();
1713 public void onRemoval(RemovalNotification<K, V> notification) {
1714 add(notification);