K
- the key element typeV
- the value element typepublic final class WeakMapChangeListener<K,V> extends Object implements MapChangeListener<K,V>, WeakListener
WeakMapChangeListener
can be used, if an ObservableMap
should only maintain a weak reference to the listener. This helps to avoid
memory leaks, that can occur if observers are not unregistered from observed
objects after use.
WeakMapChangeListener
are created by passing in the original
MapChangeListener
. The WeakMapChangeListener
should then be
registered to listen for changes of the observed object.
Note: You have to keep a reference to the MapChangeListener
, that
was passed in as long as it is in use, otherwise it will be garbage collected
to soon.
MapChangeListener
,
ObservableMap
,
WeakListener
MapChangeListener.Change<K,V>
Constructor and Description |
---|
WeakMapChangeListener(MapChangeListener<K,V> listener)
The constructor of
WeakMapChangeListener . |
Modifier and Type | Method and Description |
---|---|
void |
onChanged(MapChangeListener.Change<? extends K,? extends V> change)
Called after a change has been made to an ObservableMap.
|
boolean |
wasGarbageCollected()
Returns
true if the linked listener was garbage-collected. |
public WeakMapChangeListener(MapChangeListener<K,V> listener)
WeakMapChangeListener
.listener
- The original listener that should be notifiedpublic boolean wasGarbageCollected()
true
if the linked listener was garbage-collected.
In this case, the listener can be removed from the observable.wasGarbageCollected
in interface WeakListener
true
if the linked listener was garbage-collected.public void onChanged(MapChangeListener.Change<? extends K,? extends V> change)
onChanged
in interface MapChangeListener<K,V>
change
- the change that was madeSubmit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.