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<in T> sender, ChangeSet? changes)
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 |
Type Parameters
Name | Description |
---|---|
T | Type of the values contained in the collection. |