You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -111,18 +113,20 @@ public extension ObservableType where Element: NotificationEmitter {
111
113
112
114
- parameter from: A Realm collection of type `Element`: either `Results`, `List`, `LinkingObjects` or `AnyRealmCollection`.
113
115
- parameter synchronousStart: whether the resulting `Observable` should emit its first element synchronously (e.g. better for UI bindings)
116
+
- parameter keyPaths: Only properties contained in the key paths array will trigger
117
+
the block when they are modified. See description above for more detail on linked properties.
114
118
- parameter queue: The serial dispatch queue to receive notification on. If `nil`, notifications are delivered to the current thread.
115
119
116
120
- returns: `Observable<Element>`, e.g. when called on `Results<Model>` it will return `Observable<Results<Model>>`, on a `List<User>` it will return `Observable<List<User>>`, etc.
117
121
*/
118
-
staticfunc collection(from collection:Element, synchronousStart:Bool=true, on queue:DispatchQueue?=nil)
0 commit comments