Delegate NotificationCallbackDelegate<T>
A callback that will be invoked each time the contents of a IRealmCollection<T> have changed.
Namespace: Realms
Assembly: Realm.dll
Syntax
public delegate void NotificationCallbackDelegate<in T>(IRealmCollection<T> sender, ChangeSet changes, Exception error);
Parameters
Type | Name | Description |
---|---|---|
IRealmCollection<T> | sender | The IRealmCollection<T> being monitored for changes. |
ChangeSet | changes | The ChangeSet describing the changes to a IRealmCollection<T>,
or |
Exception | error | An exception that might have occurred while asynchronously monitoring a
IRealmCollection<T> for changes, or |
Type Parameters
Name | Description |
---|---|
T | Type of the RealmObject which is being returned. |