public abstract class RealmObject extends java.lang.Object implements RealmModel
An annotation processor will create a proxy class for your RealmObject subclass.
The following field data types are supported:
The types short
, int
, and long
are mapped to long
when storing
within a Realm.
The only restriction a RealmObject has is that fields are not allowed to be final, transient' or volatile. Any method as well as public fields are allowed. When providing custom constructors, a public constructor with no arguments must be declared and be empty.
Fields annotated with Ignore
don't have these restrictions and don't require either a
getter or setter.
Realm will create indexes for fields annotated with Index
. This will speedup queries but
will have a negative impact on inserts and updates.
A RealmObject cannot be passed between different threads.
Constructor and Description |
---|
RealmObject() |
Modifier and Type | Method and Description |
---|---|
static <E extends RealmModel> |
addChangeListener(E object,
RealmChangeListener<E> listener)
Adds a change listener to a RealmObject.
|
<E extends RealmModel> |
addChangeListener(RealmChangeListener<E> listener)
Adds a change listener to this RealmObject.
|
<E extends RealmObject> |
asObservable()
Returns an RxJava Observable that monitors changes to this RealmObject.
|
static <E extends RealmModel> |
asObservable(E object)
Returns an RxJava Observable that monitors changes to this RealmObject.
|
void |
deleteFromRealm()
Deletes the object from the Realm it is currently associated to.
|
static <E extends RealmModel> |
deleteFromRealm(E object)
Deletes the object from the Realm it is currently associated with.
|
boolean |
isLoaded()
Determines if the current RealmObject is obtained synchronously or asynchronously (from a worker thread).
|
static <E extends RealmModel> |
isLoaded(E object)
Determines if the RealmObject is obtained synchronously or asynchronously (from a worker thread).
|
boolean |
isValid()
Checks if the RealmObject is still valid to use i.e., the RealmObject hasn't been deleted nor has the
Realm been closed. |
static <E extends RealmModel> |
isValid(E object)
Checks if the RealmObject is still valid to use i.e., the RealmObject hasn't been deleted nor has the
Realm been closed. |
boolean |
load()
Makes an asynchronous query blocking.
|
static <E extends RealmModel> |
load(E object)
Makes an asynchronous query blocking.
|
static <E extends RealmModel> |
removeChangeListener(E object,
RealmChangeListener listener)
Removes a previously registered listener on the given RealmObject.
|
void |
removeChangeListener(RealmChangeListener listener)
Removes a previously registered listener.
|
void |
removeChangeListeners()
Removes all registered listeners.
|
static <E extends RealmModel> |
removeChangeListeners(E object)
Removes all registered listeners from the given RealmObject.
|
public final void deleteFromRealm()
After this method is called the object will be invalid and any operation (read or write) performed on it will fail with an IllegalStateException.
java.lang.IllegalStateException
- if the corresponding Realm is closed or in an incorrect thread.isValid()
public static <E extends RealmModel> void deleteFromRealm(E object)
After this method is called the object will be invalid and any operation (read or write) performed on it will fail with an IllegalStateException.
java.lang.IllegalStateException
- if the corresponding Realm is closed or in an incorrect thread.isValid()
public final boolean isValid()
Realm
been closed. It will always return false
for unmanaged objects.
Note that this can be used to check the validity of certain conditions such as being null
when observed.
realm.where(BannerRealm.class).equalTo("type", type).findFirstAsync().asObservable()
.filter(result.isLoaded() && result.isValid())
.first()
true
if the object is still accessible, false
otherwise or if it is an unmanaged object.public static <E extends RealmModel> boolean isValid(E object)
Realm
been closed. It will always return false
for unmanaged objects.object
- RealmObject to check validity for.true
if the object is still accessible, false
otherwise or if it is an unmanaged object.public final boolean isLoaded()
true
for them.
This will return true
if called for an unmanaged object (created outside of Realm).true
if the query has completed and the data is available false
if the query is in
progress.public static <E extends RealmModel> boolean isLoaded(E object)
true
for them.
This will return true
if called for an unmanaged object (created outside of Realm).object
- RealmObject to check.true
if the query has completed and the data is available false
if the query is in
progress.public final boolean load()
Note: This will return true
if called for an unmanaged object (created outside of Realm).
true
if it successfully completed the query, false
otherwise.public static <E extends RealmModel> boolean load(E object)
Note: This will return true
if called for an unmanaged object (created outside of Realm).
object
- RealmObject to force load.true
if it successfully completed the query, false
otherwise.public final <E extends RealmModel> void addChangeListener(RealmChangeListener<E> listener)
listener
- the change listener to be notified.java.lang.IllegalArgumentException
- if the change listener is null
or the object is an unmanaged object.java.lang.IllegalArgumentException
- if object is an unmanaged RealmObject.public static <E extends RealmModel> void addChangeListener(E object, RealmChangeListener<E> listener)
object
- RealmObject to add listener to.listener
- the change listener to be notified.java.lang.IllegalArgumentException
- if the object
or the change listener is null
.java.lang.IllegalArgumentException
- if object is an unmanaged RealmObject.java.lang.IllegalStateException
- if you try to add a listener from a non-Looper Thread.public final void removeChangeListener(RealmChangeListener listener)
listener
- the instance to be removed.java.lang.IllegalArgumentException
- if the change listener is null
or the object is an unmanaged object.java.lang.IllegalStateException
- if you try to remove a listener from a non-Looper Thread.public static <E extends RealmModel> void removeChangeListener(E object, RealmChangeListener listener)
object
- RealmObject to remove listener from.listener
- the instance to be removed.java.lang.IllegalArgumentException
- if the object
or the change listener is null
.java.lang.IllegalArgumentException
- if object is an unmanaged RealmObject.java.lang.IllegalStateException
- if you try to remove a listener from a non-Looper Thread.public final void removeChangeListeners()
public static <E extends RealmModel> void removeChangeListeners(E object)
object
- RealmObject to remove all listeners from.java.lang.IllegalArgumentException
- if object is null
or isn't managed by Realm.public final <E extends RealmObject> <any> asObservable()
onComplete
will never be called.
When chaining a RealmObject observable use obj.<MyRealmObjectClass>asObservable()
to pass on
type information, otherwise the type of the following observables will be RealmObject
.
If you would like the asObservable()
to stop emitting items you can instruct RxJava to
only emit only the first item by using the first()
operator:
obj.asObservable()
.filter(obj -> obj.isLoaded())
.first()
.subscribe( ... ) // You only get the object once
Note that when the Realm
is accessed from threads other than where it was created,
IllegalStateException
will be thrown. Care should be taken when using different schedulers
with subscribeOn()
and observeOn()
. Consider using Realm.where().find*Async()
instead.
E
- RealmObject class that is being observed. Must be this class or its super types.onNext
. It will never call onComplete
or OnError
.java.lang.UnsupportedOperationException
- if the required RxJava framework is not on the classpath or the
corresponding Realm instance doesn't support RxJava.public static <E extends RealmModel> <any> asObservable(E object)
onComplete
will never be called.
When chaining a RealmObject observable use obj.<MyRealmObjectClass>asObservable()
to pass on
type information, otherwise the type of the following observables will be RealmObject
.
If you would like the asObservable()
to stop emitting items you can instruct RxJava to
emit only the first item by using the first()
operator:
obj.asObservable()
.filter(obj -> obj.isLoaded())
.first()
.subscribe( ... ) // You only get the object once
object
- RealmObject class that is being observed. Must be this class or its super types.onNext
. It will never call onComplete
or OnError
.java.lang.UnsupportedOperationException
- if the required RxJava framework is not on the classpath.