Package io.realm
Interface SetChangeListener<T>
-
- Type Parameters:
T
- the type of the values stored in the set
public interface SetChangeListener<T>
SetChangeListener
can be registered with aRealmSet
to receive a notification with aSetChangeSet
to describe the details of what have been changed in the set since last time.Realm instances on a thread without an
Looper
cannot register aSetChangeListener
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onChange(RealmSet<T> set, SetChangeSet changes)
-
-
-
Method Detail
-
onChange
void onChange(RealmSet<T> set, SetChangeSet changes)
-
-