Class RealmList<E>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- io.realm.RealmList<E>
-
- Type Parameters:
E- the class of objects in list.
- All Implemented Interfaces:
io.realm.internal.Freezable<RealmCollection<E>>,io.realm.internal.ManageableObject,OrderedRealmCollection<E>,RealmCollection<E>,Iterable<E>,Collection<E>,List<E>
public class RealmList<E> extends AbstractList<E> implements OrderedRealmCollection<E>
RealmList is used to model one-to-many relationships in aRealmObject. RealmList has two modes: A managed and unmanaged mode. In managed mode all objects are persisted inside a Realm, in unmanaged mode it works as a normal ArrayList.Only Realm can create managed RealmLists. Managed RealmLists will automatically update the content whenever the underlying Realm is updated, and can only be accessed using the getter of a
RealmObject.Unmanaged RealmLists can be created by the user and can contain both managed and unmanaged RealmObjects. This is useful when dealing with JSON deserializers like GSON or other frameworks that inject values into a class. Unmanaged elements in this list can be added to a Realm using the
Realm.copyToRealm(Iterable, ImportFlag...)method.RealmListcan contain more elements thanInteger.MAX_VALUE. In that case, you can access only firstInteger.MAX_VALUEelements in it.
-
-
Field Summary
Fields Modifier and Type Field Description io.realm.BaseRealmbaseRealmTheBaseRealminstance in which this list resides.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(int location, E element)Inserts the specified object into this List at the specified location.booleanadd(E object)Adds the specified object at the end of this List.voidaddChangeListener(OrderedRealmCollectionChangeListener<RealmList<E>> listener)Adds a change listener to thisRealmList.voidaddChangeListener(RealmChangeListener<RealmList<E>> listener)Adds a change listener to thisRealmList.Observable<CollectionChange<RealmList<E>>>asChangesetObservable()Returns an Rx Observable that monitors changes to this RealmList.Flowable<RealmList<E>>asFlowable()Returns an Rx Flowable that monitors changes to this RealmList.doubleaverage(String fieldName)Returns the average of a given field.voidclear()Removes all elements from this list, leaving it empty.booleancontains(Object object)Returnstrueif the list contains the specified element when attached to a Realm.OrderedRealmCollectionSnapshot<E>createSnapshot()Creates a snapshot from thisOrderedRealmCollection.booleandeleteAllFromRealm()This deletes all objects in the collection from the underlying Realm as well as from the collection.booleandeleteFirstFromRealm()Deletes the first object from the Realm.voiddeleteFromRealm(int location)Deletes the object at the given index from the Realm.booleandeleteLastFromRealm()Deletes the last object from the Realm.Efirst()Gets the first object from the collection.Efirst(E defaultValue)Gets the first object from the collection.RealmList<E>freeze()Eget(int location)Returns the element at the specified location in this list.RealmgetRealm()Returns theRealminstance to which this collection belongs.booleanisFrozen()booleanisLoaded()Checks if a collection has finished loading its data yet.booleanisManaged()Checks if the collection is managed by Realm.booleanisValid()Checks if the collection is still valid to use, i.e., theRealminstance hasn't been closed.Iterator<E>iterator()Elast()Gets the last object from the collection.Elast(E defaultValue)Gets the last object from the collection.ListIterator<E>listIterator()ListIterator<E>listIterator(int location)booleanload()Blocks the collection until all data are available.Numbermax(String fieldName)Finds the maximum value of a field.DatemaxDate(String fieldName)Finds the maximum date.Numbermin(String fieldName)Finds the minimum value of a field.DateminDate(String fieldName)Finds the minimum date.voidmove(int oldPos, int newPos)Moves an object from one position to another, while maintaining a fixed sized list.Eremove(int location)Removes the object at the specified location from this list.booleanremove(Object object)Removes one instance of the specified object from thisCollectionif one is contained.booleanremoveAll(Collection<?> collection)Removes all occurrences in thisCollectionof each object in the specifiedCollection.voidremoveAllChangeListeners()Removes all user-defined change listeners.voidremoveChangeListener(OrderedRealmCollectionChangeListener<RealmList<E>> listener)Removes the specified change listener.voidremoveChangeListener(RealmChangeListener<RealmList<E>> listener)Removes the specified change listener.Eset(int location, E object)Replaces the element at the specified location in this list with the specified object.intsize()Returns the number of elements in thisList.RealmResults<E>sort(String fieldName)Sorts a collection based on the provided field in ascending order.RealmResults<E>sort(String[] fieldNames, Sort[] sortOrders)Sorts a collection based on the provided fields and sort orders.RealmResults<E>sort(String fieldName, Sort sortOrder)Sorts a collection based on the provided field and sort order.RealmResults<E>sort(String fieldName1, Sort sortOrder1, String fieldName2, Sort sortOrder2)Sorts a collection based on the provided fields and sort orders.Numbersum(String fieldName)Calculates the sum of a given field.StringtoString()RealmQuery<E>where()Returns a RealmQuery, which can be used to query for specific objects of this class.-
Methods inherited from class java.util.AbstractList
addAll, equals, hashCode, indexOf, lastIndexOf, subList
-
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, isEmpty, retainAll, toArray, toArray
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
addAll, addAll, containsAll, equals, hashCode, indexOf, isEmpty, lastIndexOf, replaceAll, retainAll, sort, spliterator, subList, toArray, toArray
-
-
-
-
Constructor Detail
-
RealmList
public RealmList()
Creates a RealmList in unmanaged mode, where the elements are not controlled by a Realm. This effectively makes the RealmList function as aArrayListand it is not possible to query the objects in this state.Use
Realm.copyToRealm(Iterable, ImportFlag...)to properly persist its elements in Realm.
-
RealmList
public RealmList(E... objects)
Creates a RealmList in unmanaged mode with an initial list of elements. A RealmList in unmanaged mode function as aArrayListand it is not possible to query the objects in this state.Use
Realm.copyToRealm(Iterable, ImportFlag...)to properly persist all unmanaged elements in Realm.- Parameters:
objects- initial objects in the list.
-
-
Method Detail
-
isValid
public boolean isValid()
Checks if the collection is still valid to use, i.e., theRealminstance hasn't been closed. It will always returntruefor an unmanaged collection.- Specified by:
isValidin interfaceio.realm.internal.ManageableObject- Specified by:
isValidin interfaceRealmCollection<E>- Returns:
trueif it is still valid to use or an unmanaged collection,falseotherwise.
-
freeze
public RealmList<E> freeze()
- Specified by:
freezein interfaceio.realm.internal.Freezable<E>
-
isFrozen
public boolean isFrozen()
- Specified by:
isFrozenin interfaceio.realm.internal.ManageableObject
-
isManaged
public boolean isManaged()
Checks if the collection is managed by Realm. A managed collection is just a wrapper around the data in the underlying Realm file. On Looper threads, a managed collection will be live-updated so it always points to the latest data. Managed collections are thread confined so that they cannot be accessed from other threads than the one that created them.If this method returns
false, the collection is unmanaged. An unmanaged collection is just a normal java collection, so it will not be live updated.- Specified by:
isManagedin interfaceio.realm.internal.ManageableObject- Specified by:
isManagedin interfaceRealmCollection<E>- Returns:
trueif this is a managedRealmCollection,falseotherwise.
-
add
public void add(int location, @Nullable E element)Inserts the specified object into this List at the specified location. The object is inserted before any previous element at the specified location. If the location is equal to the size of this List, the object is added at the end.- Unmanaged RealmLists: It is possible to add both managed and unmanaged objects. If adding managed
objects to an unmanaged RealmList they will not be copied to the Realm again if using
Realm.copyToRealm(RealmModel, ImportFlag...)afterwards. - Managed RealmLists: It is possible to add unmanaged objects to a RealmList that is already managed. In
that case the object will transparently be copied to Realm using
Realm.copyToRealm(RealmModel, ImportFlag...)orRealm.copyToRealmOrUpdate(RealmModel, ImportFlag...)if it has a primary key.
- Specified by:
addin interfaceList<E>- Overrides:
addin classAbstractList<E>- Parameters:
location- the index at which to insert.element- the element to add.- Throws:
IllegalStateException- if Realm instance has been closed or container object has been removed.IndexOutOfBoundsException- iflocation < 0 || location > size().
- Unmanaged RealmLists: It is possible to add both managed and unmanaged objects. If adding managed
objects to an unmanaged RealmList they will not be copied to the Realm again if using
-
add
public boolean add(@Nullable E object)Adds the specified object at the end of this List.- Unmanaged RealmLists: It is possible to add both managed and unmanaged objects. If adding managed
objects to an unmanaged RealmList they will not be copied to the Realm again if using
Realm.copyToRealm(RealmModel, ImportFlag...)afterwards. - Managed RealmLists: It is possible to add unmanaged objects to a RealmList that is already managed. In
that case the object will transparently be copied to Realm using
Realm.copyToRealm(RealmModel, ImportFlag...)orRealm.copyToRealmOrUpdate(RealmModel, ImportFlag...)if it has a primary key.
- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceList<E>- Overrides:
addin classAbstractList<E>- Parameters:
object- the object to add.- Returns:
- always
true. - Throws:
IllegalStateException- if Realm instance has been closed or parent object has been removed.
- Unmanaged RealmLists: It is possible to add both managed and unmanaged objects. If adding managed
objects to an unmanaged RealmList they will not be copied to the Realm again if using
-
set
public E set(int location, @Nullable E object)
Replaces the element at the specified location in this list with the specified object.- Unmanaged RealmLists: It is possible to add both managed and unmanaged objects. If adding managed
objects to an unmanaged RealmList they will not be copied to the Realm again if using
Realm.copyToRealm(RealmModel, ImportFlag...)afterwards. - Managed RealmLists: It is possible to add unmanaged objects to a RealmList that is already managed.
In that case the object will transparently be copied to Realm using
Realm.copyToRealm(RealmModel, ImportFlag...)orRealm.copyToRealmOrUpdate(RealmModel, ImportFlag...)if it has a primary key.
- Specified by:
setin interfaceList<E>- Overrides:
setin classAbstractList<E>- Parameters:
location- the index at which to put the specified object.object- the object to add.- Returns:
- the previous element at the index.
- Throws:
IllegalStateException- if Realm instance has been closed or parent object has been removed.IndexOutOfBoundsException- iflocation < 0 || location >= size().
- Unmanaged RealmLists: It is possible to add both managed and unmanaged objects. If adding managed
objects to an unmanaged RealmList they will not be copied to the Realm again if using
-
move
public void move(int oldPos, int newPos)Moves an object from one position to another, while maintaining a fixed sized list. RealmObjects will be shifted so nonullvalues are introduced.- Parameters:
oldPos- index of RealmObject to move.newPos- target position. If newPos < oldPos the object at the location will be shifted to the right. If oldPos < newPos, indexes > oldPos will be shifted once to the left.- Throws:
IllegalStateException- if Realm instance has been closed or parent object has been removed.IndexOutOfBoundsException- if any position is outside [0, size()].
-
clear
public void clear()
Removes all elements from this list, leaving it empty. This method doesn't remove the objects from the Realm.- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceList<E>- Overrides:
clearin classAbstractList<E>- Throws:
IllegalStateException- if Realm instance has been closed or parent object has been removed.- See Also:
List.isEmpty(),List.size(),deleteAllFromRealm()
-
remove
public E remove(int location)
Removes the object at the specified location from this list.- Specified by:
removein interfaceList<E>- Overrides:
removein classAbstractList<E>- Parameters:
location- the index of the object to remove.- Returns:
- the removed object.
- Throws:
IllegalStateException- if Realm instance has been closed or parent object has been removed.IndexOutOfBoundsException- iflocation < 0 || location >= size().
-
remove
public boolean remove(@Nullable Object object)Removes one instance of the specified object from thisCollectionif one is contained. This implementation iterates over thisCollectionand tests each elementereturned by the iterator, whethereis equal to the given object. Ifobject != nullthen this test is performed usingobject.equals(e), otherwise usingobject == null. If an element equal to the given object is found, then theremovemethod is called on the iterator andtrueis returned,falseotherwise. If the iterator does not support removing elements, anUnsupportedOperationExceptionis thrown.- Specified by:
removein interfaceCollection<E>- Specified by:
removein interfaceList<E>- Overrides:
removein classAbstractCollection<E>- Parameters:
object- the object to remove.- Returns:
trueif thisCollectionis modified,falseotherwise.- Throws:
ClassCastException- if the object passed is not of the correct type.NullPointerException- ifobjectisnull.
-
removeAll
public boolean removeAll(Collection<?> collection)
Removes all occurrences in thisCollectionof each object in the specifiedCollection. After this method returns none of the elements in the passedCollectioncan be found in thisCollectionanymore.This implementation iterates over the
Collectionand tests each elementereturned by the iterator, whether it is contained in the specifiedCollection. If this test is positive, then theremovemethod is called on the iterator.- Specified by:
removeAllin interfaceCollection<E>- Specified by:
removeAllin interfaceList<E>- Overrides:
removeAllin classAbstractCollection<E>- Parameters:
collection- the collection of objects to remove.- Returns:
trueif thisCollectionis modified,falseotherwise.- Throws:
ClassCastException- if one or more elements ofcollectionisn't of the correct type.NullPointerException- ifcollectionisnull.
-
deleteFirstFromRealm
public boolean deleteFirstFromRealm()
Deletes the first object from the Realm. This also removes it from this collection.- Specified by:
deleteFirstFromRealmin interfaceOrderedRealmCollection<E>- Returns:
trueif an object was deleted,falseotherwise.
-
deleteLastFromRealm
public boolean deleteLastFromRealm()
Deletes the last object from the Realm. This also removes it from this collection.- Specified by:
deleteLastFromRealmin interfaceOrderedRealmCollection<E>- Returns:
trueif an object was deleted,falseotherwise.
-
get
@Nullable public E get(int location)
Returns the element at the specified location in this list.- Specified by:
getin interfaceList<E>- Specified by:
getin classAbstractList<E>- Parameters:
location- the index of the element to return.- Returns:
- the element at the specified index.
- Throws:
IllegalStateException- if Realm instance has been closed or parent object has been removed.IndexOutOfBoundsException- iflocation < 0 || location >= size().
-
first
@Nullable public E first()
Gets the first object from the collection.- Specified by:
firstin interfaceOrderedRealmCollection<E>- Returns:
- the first object.
-
first
@Nullable public E first(@Nullable E defaultValue)
Gets the first object from the collection. If the collection is empty, the provided default will be used instead.- Specified by:
firstin interfaceOrderedRealmCollection<E>- Returns:
- the first object or the provided default.
-
last
@Nullable public E last()
Gets the last object from the collection.- Specified by:
lastin interfaceOrderedRealmCollection<E>- Returns:
- the last object.
-
last
@Nullable public E last(@Nullable E defaultValue)
Gets the last object from the collection. If the collection is empty, the provided default will be used instead.- Specified by:
lastin interfaceOrderedRealmCollection<E>- Returns:
- the last object or the provided default.
-
sort
public RealmResults<E> sort(String fieldName)
Sorts a collection based on the provided field in ascending order.- Specified by:
sortin interfaceOrderedRealmCollection<E>- Parameters:
fieldName- the field name to sort by. Only fields of type boolean, short, int, long, float, double, Date, and String are supported.- Returns:
- a new sorted
RealmResultswill be created and returned. The original collection stays unchanged.
-
sort
public RealmResults<E> sort(String fieldName, Sort sortOrder)
Sorts a collection based on the provided field and sort order.- Specified by:
sortin interfaceOrderedRealmCollection<E>- Parameters:
fieldName- the field name to sort by. Only fields of type boolean, short, int, long, float, double, Date, and String are supported.sortOrder- the direction to sort by.- Returns:
- a new sorted
RealmResultswill be created and returned. The original collection stays unchanged.
-
sort
public RealmResults<E> sort(String fieldName1, Sort sortOrder1, String fieldName2, Sort sortOrder2)
Sorts a collection based on the provided fields and sort orders.- Specified by:
sortin interfaceOrderedRealmCollection<E>- Parameters:
fieldName1- first field name. Only fields of type boolean, short, int, long, float, double, Date, and String are supported.sortOrder1- sort order for first field.fieldName2- second field name. Only fields of type boolean, short, int, long, float, double, Date, and String are supported.sortOrder2- sort order for second field.- Returns:
- a new sorted
RealmResultswill be created and returned. The original collection stays unchanged.
-
sort
public RealmResults<E> sort(String[] fieldNames, Sort[] sortOrders)
Sorts a collection based on the provided fields and sort orders.- Specified by:
sortin interfaceOrderedRealmCollection<E>- Parameters:
fieldNames- an array of field names to sort by. Only fields of type boolean, short, int, long, float, double, Date, and String are supported.sortOrders- the directions to sort by.- Returns:
- a new sorted
RealmResultswill be created and returned. The original collection stays unchanged.
-
deleteFromRealm
public void deleteFromRealm(int location)
Deletes the object at the given index from the Realm. This also removes it from the collection.- Specified by:
deleteFromRealmin interfaceOrderedRealmCollection<E>- Parameters:
location- the array index identifying the object to be removed.
-
size
public int size()
Returns the number of elements in thisList.- Specified by:
sizein interfaceCollection<E>- Specified by:
sizein interfaceList<E>- Specified by:
sizein classAbstractCollection<E>- Returns:
- the number of elements in this
List. - Throws:
IllegalStateException- if Realm instance has been closed or parent object has been removed.
-
where
public RealmQuery<E> where()
Returns a RealmQuery, which can be used to query for specific objects of this class.- Specified by:
wherein interfaceRealmCollection<E>- Returns:
- a RealmQuery object.
- Throws:
IllegalStateException- if Realm instance has been closed or parent object has been removed.- See Also:
RealmQuery
-
min
@Nullable public Number min(String fieldName)
Finds the minimum value of a field.- Specified by:
minin interfaceRealmCollection<E>- Parameters:
fieldName- the field to look for a minimum on. Only number fields are supported.- Returns:
- if no objects exist or they all have
nullas the value for the given field,nullwill be returned. Otherwise the minimum value is returned. When determining the minimum value, objects withnullvalues are ignored.
-
max
@Nullable public Number max(String fieldName)
Finds the maximum value of a field.- Specified by:
maxin interfaceRealmCollection<E>- Parameters:
fieldName- the field to look for a maximum on. Only number fields are supported.- Returns:
- if no objects exist or they all have
nullas the value for the given field,nullwill be returned. Otherwise the maximum value is returned. When determining the maximum value, objects withnullvalues are ignored.
-
sum
public Number sum(String fieldName)
Calculates the sum of a given field.- Specified by:
sumin interfaceRealmCollection<E>- Parameters:
fieldName- the field to sum. Only number fields are supported.- Returns:
- the sum. If no objects exist or they all have
nullas the value for the given field,0will be returned. When computing the sum, objects withnullvalues are ignored.
-
average
public double average(String fieldName)
Returns the average of a given field.- Specified by:
averagein interfaceRealmCollection<E>- Parameters:
fieldName- the field to calculate average on. Only number fields are supported.- Returns:
- the average for the given field amongst objects in query results. This will be of type double for all
types of number fields. If no objects exist or they all have
nullas the value for the given field,0will be returned. When computing the average, objects withnullvalues are ignored.
-
maxDate
@Nullable public Date maxDate(String fieldName)
Finds the maximum date.- Specified by:
maxDatein interfaceRealmCollection<E>- Parameters:
fieldName- the field to look for the maximum date. If fieldName is not of Date type, an exception is thrown.- Returns:
- if no objects exist or they all have
nullas the value for the given date field,nullwill be returned. Otherwise the maximum date is returned. When determining the maximum date, objects withnullvalues are ignored.
-
minDate
@Nullable public Date minDate(String fieldName)
Finds the minimum date.- Specified by:
minDatein interfaceRealmCollection<E>- Parameters:
fieldName- the field to look for the minimum date. If fieldName is not of Date type, an exception is thrown.- Returns:
- if no objects exist or they all have
nullas the value for the given date field,nullwill be returned. Otherwise the minimum date is returned. When determining the minimum date, objects withnullvalues are ignored.
-
deleteAllFromRealm
public boolean deleteAllFromRealm()
This deletes all objects in the collection from the underlying Realm as well as from the collection.- Specified by:
deleteAllFromRealmin interfaceRealmCollection<E>- Returns:
trueif objects was deleted,falseotherwise.
-
isLoaded
public boolean isLoaded()
Checks if a collection has finished loading its data yet.- Specified by:
isLoadedin interfaceRealmCollection<E>- Returns:
trueif data has been loaded and is available,falseif data is still being loaded.
-
load
public boolean load()
Blocks the collection until all data are available.- Specified by:
loadin interfaceRealmCollection<E>- Returns:
trueif the data could be successfully loaded,falseotherwise.
-
contains
public boolean contains(@Nullable Object object)Returnstrueif the list contains the specified element when attached to a Realm. This method will query the native Realm underlying storage engine to quickly find the specified element.If the list is not attached to a Realm, the default
List.contains(Object)implementation will occur.- Specified by:
containsin interfaceCollection<E>- Specified by:
containsin interfaceList<E>- Specified by:
containsin interfaceRealmCollection<E>- Overrides:
containsin classAbstractCollection<E>- Parameters:
object- the element whose presence in this list is to be tested.- Returns:
trueif this list contains the specified element otherwisefalse.
-
listIterator
@Nonnull public ListIterator<E> listIterator()
- Specified by:
listIteratorin interfaceList<E>- Overrides:
listIteratorin classAbstractList<E>
-
listIterator
@Nonnull public ListIterator<E> listIterator(int location)
- Specified by:
listIteratorin interfaceList<E>- Overrides:
listIteratorin classAbstractList<E>
-
createSnapshot
public OrderedRealmCollectionSnapshot<E> createSnapshot()
Creates a snapshot from thisOrderedRealmCollection.- Specified by:
createSnapshotin interfaceOrderedRealmCollection<E>- Returns:
- the snapshot of this collection.
- See Also:
OrderedRealmCollectionSnapshot
-
getRealm
public Realm getRealm()
Returns theRealminstance to which this collection belongs.Calling
Closeable.close()on the returned instance is discouraged as it is the same as calling it on the original Realm instance which may cause the Realm to fully close invalidating the list.- Returns:
Realminstance this collection belongs to ornullif the collection is unmanaged.- Throws:
IllegalStateException- if the Realm is an instance ofDynamicRealmor theRealmwas already closed.
-
toString
public String toString()
- Overrides:
toStringin classAbstractCollection<E>
-
asFlowable
public Flowable<RealmList<E>> asFlowable()
Returns an Rx Flowable that monitors changes to this RealmList. It will emit the current RealmList when subscribed to. RealmList will continually be emitted as the RealmList is updated -onCompletewill never be called.Items emitted from Realm Flowables are frozen (See
freeze(). This means that they are immutable and can be read on any thread.Realm Flowables always emit items from the thread holding the live RealmList. This means that if you need to do further processing, it is recommend to observe the values on a computation scheduler:
list.asFlowable() .observeOn(Schedulers.computation()) .map(rxResults -> doExpensiveWork(rxResults)) .observeOn(AndroidSchedulers.mainThread()) .subscribe( ... );If you would like the
asFlowable()to stop emitting items you can instruct RxJava to only emit only the first item by using thefirst()operator:list.asFlowable() .first() .subscribe( ... ) // You only get the results once- Returns:
- RxJava Observable that only calls
onNext. It will never callonCompleteorOnError. - Throws:
UnsupportedOperationException- if the required RxJava framework is not on the classpath or the corresponding Realm instance doesn't support RxJava.- See Also:
- RxJava and Realm
-
asChangesetObservable
public Observable<CollectionChange<RealmList<E>>> asChangesetObservable()
Returns an Rx Observable that monitors changes to this RealmList. It will emit the current RealmList when subscribed. For each update to the RealmList a pair consisting of the RealmList and theOrderedCollectionChangeSetwill be sent. The changeset will benullthe first time an RealmList is emitted.RealmList will continually be emitted as the RealmList is updated -
onCompletewill never be called.Items emitted from Realm Observables are frozen (See
freeze(). This means that they are immutable and can be read on any thread.Realm Observables always emit items from the thread holding the live Realm. This means that if you need to do further processing, it is recommend to observe the values on a computation scheduler:
list.asChangesetObservable() .observeOn(Schedulers.computation()) .map((rxList, changes) -> doExpensiveWork(rxList, changes)) .observeOn(AndroidSchedulers.mainThread()) .subscribe( ... );- Returns:
- RxJava Observable that only calls
onNext. It will never callonCompleteorOnError. - Throws:
UnsupportedOperationException- if the required RxJava framework is not on the classpath or the corresponding Realm instance doesn't support RxJava.IllegalStateException- if the Realm wasn't opened on a Looper thread.- See Also:
- RxJava and Realm
-
addChangeListener
public void addChangeListener(OrderedRealmCollectionChangeListener<RealmList<E>> listener)
Adds a change listener to thisRealmList.Registering a change listener will not prevent the underlying RealmList from being garbage collected. If the RealmList is garbage collected, the change listener will stop being triggered. To avoid this, keep a strong reference for as long as appropriate e.g. in a class variable.
public class MyActivity extends Activity { private RealmList<Dog> dogs; // Strong reference to keep listeners alive \@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); dogs = realm.where(Person.class).findFirst().getDogs(); dogs.addChangeListener(new OrderedRealmCollectionChangeListener<RealmList<Dog>>() { \@Override public void onChange(RealmList<Dog> dogs, OrderedCollectionChangeSet changeSet) { // React to change } }); } }- Parameters:
listener- the change listener to be notified.- Throws:
IllegalArgumentException- if the change listener isnull.IllegalStateException- if you try to add a listener from a non-Looper orIntentServicethread.
-
removeChangeListener
public void removeChangeListener(OrderedRealmCollectionChangeListener<RealmList<E>> listener)
Removes the specified change listener.- Parameters:
listener- the change listener to be removed.- Throws:
IllegalArgumentException- if the change listener isnull.IllegalStateException- if you try to remove a listener from a non-Looper Thread.- See Also:
RealmChangeListener
-
addChangeListener
public void addChangeListener(RealmChangeListener<RealmList<E>> listener)
Adds a change listener to thisRealmList.Registering a change listener will not prevent the underlying RealmList from being garbage collected. If the RealmList is garbage collected, the change listener will stop being triggered. To avoid this, keep a strong reference for as long as appropriate e.g. in a class variable.
public class MyActivity extends Activity { private RealmList<Dog> dogs; // Strong reference to keep listeners alive \@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); dogs = realm.where(Person.class).findFirst().getDogs(); dogs.addChangeListener(new RealmChangeListener<RealmList<Dog>>() { \@Override public void onChange(RealmList<Dog> dogs) { // React to change } }); } }- Parameters:
listener- the change listener to be notified.- Throws:
IllegalArgumentException- if the change listener isnull.IllegalStateException- if you try to add a listener from a non-Looper orIntentServicethread.
-
removeChangeListener
public void removeChangeListener(RealmChangeListener<RealmList<E>> listener)
Removes the specified change listener.- Parameters:
listener- the change listener to be removed.- Throws:
IllegalArgumentException- if the change listener isnull.IllegalStateException- if you try to remove a listener from a non-Looper Thread.- See Also:
RealmChangeListener
-
removeAllChangeListeners
public void removeAllChangeListeners()
Removes all user-defined change listeners.- Throws:
IllegalStateException- if you try to remove listeners from a non-Looper Thread.- See Also:
RealmChangeListener
-
-