Results
public final class Results<T: Object>: ResultsBase
Results is an auto-updating container type in Realm returned from object queries.
Results can be queried with the same predicates as List<T> and you can chain
queries to further filter query results.
Results always reflect the current state of the Realm on the current thread,
including during write transactions on the current thread. The one exception to
this is when using for...in enumeration, which will always enumerate over the
objects which matched the query when the enumeration is begun, even if
some of them are deleted or modified to be excluded by the filter during the
enumeration.
Results are initially lazily evaluated, and only run queries when the result of the query is requested. This means that chaining several temporary Results to sort and filter your data does not perform any extra work processing the intermediate state.
Once the results have been evaluated or a notification block has been added, the results are eagerly kept up-to-date, with the work done to keep them up-to-date done on a background thread whenever possible.
Results cannot be created directly.
-
Element type contained in this collection.
Declaration
Swift
public typealias Element = T -
Returns the object at the given
index.Declaration
Swift
public subscript(index: Int) -> TParameters
indexThe index.
Return Value
The object at the given
index. -
Returns the Realm these results are associated with. Despite returning an
Optional<Realm>in order to conform toRealmCollectionType, it will always return.Some()since aResultscannot exist independently from aRealm.Declaration
Swift
public var realm: Realm? { return Realm(rlmResults.realm) } -
Returns the number of objects in these results.
Declaration
Swift
public var count: Int { return Int(rlmResults.count) }
-
Returns the index of the given object, or
nilif the object is not in the results.Declaration
Swift
public func indexOf(object: T) -> Int?Parameters
objectThe object whose index is being queried.
Return Value
The index of the given object, or
nilif the object is not in the results. -
Returns the index of the first object matching the given predicate, or
nilif no objects match.Declaration
Swift
public func indexOf(predicate: NSPredicate) -> Int?Parameters
predicateThe predicate to filter the objects.
Return Value
The index of the first matching object, or
nilif no objects match. -
Returns the index of the first object matching the given predicate, or
nilif no objects match.Declaration
Swift
public func indexOf(predicateFormat: String, _ args: AnyObject...) -> Int?Parameters
predicateFormatThe predicate format string which can accept variable arguments.
Return Value
The index of the first matching object, or
nilif no objects match.
-
Returns the first object in the results, or
nilif empty.Declaration
Swift
public var first: T? { return unsafeBitCast(rlmResults.firstObject(), Optional<T>.self) } -
Returns the last object in the results, or
nilif empty.Declaration
Swift
public var last: T? { return unsafeBitCast(rlmResults.lastObject(), Optional<T>.self) }
-
Returns an Array containing the results of invoking
valueForKey(_:)using key on each of the collection’s objects.Declaration
Swift
public override func valueForKey(key: String) -> AnyObject?Parameters
keyThe name of the property.
Return Value
Array containing the results of invoking
valueForKey(_:)using key on each of the collection’s objects. -
Returns an Array containing the results of invoking
valueForKeyPath(_:)using keyPath on each of the collection’s objects.Declaration
Swift
public override func valueForKeyPath(keyPath: String) -> AnyObject?Parameters
keyPathThe key path to the property.
Return Value
Array containing the results of invoking
valueForKeyPath(_:)using keyPath on each of the collection’s objects. -
Invokes
setValue(_:forKey:)on each of the collection’s objects using the specified value and key.Warning
This method can only be called during a write transaction.
Declaration
Swift
public override func setValue(value: AnyObject?, forKey key: String)Parameters
valueThe object value.
keyThe name of the property.
-
Filters the results to the objects that match the given predicate.
Declaration
Swift
public func filter(predicateFormat: String, _ args: AnyObject...) -> Results<T>Parameters
predicateFormatThe predicate format string which can accept variable arguments.
Return Value
Results containing objects that match the given predicate.
-
Filters the results to the objects that match the given predicate.
Declaration
Swift
public func filter(predicate: NSPredicate) -> Results<T>Parameters
predicateThe predicate to filter the objects.
Return Value
Results containing objects that match the given predicate.
-
Returns
Resultswith elements sorted by the given property name.Declaration
Swift
public func sorted(property: String, ascending: Bool = true) -> Results<T>Parameters
propertyThe property name to sort by.
ascendingThe direction to sort by.
Return Value
Resultswith elements sorted by the given property name. -
Returns
Resultswith elements sorted by the given sort descriptors.Declaration
Swift
public func sorted<S: SequenceType where S.Generator.Element == SortDescriptor>(sortDescriptors: S) -> Results<T>Parameters
sortDescriptorsSortDescriptors to sort by.Return Value
Resultswith elements sorted by the given sort descriptors.
-
Returns the minimum value of the given property.
Warning
Only names of properties of a type conforming to the
MinMaxTypeprotocol can be used.Declaration
Swift
public func min<U: MinMaxType>(property: String) -> U?Parameters
propertyThe name of a property conforming to
MinMaxTypeto look for a minimum on.Return Value
The minimum value for the property amongst objects in the Results, or
nilif the Results is empty. -
Returns the maximum value of the given property.
Warning
Only names of properties of a type conforming to the
MinMaxTypeprotocol can be used.Declaration
Swift
public func max<U: MinMaxType>(property: String) -> U?Parameters
propertyThe name of a property conforming to
MinMaxTypeto look for a maximum on.Return Value
The maximum value for the property amongst objects in the Results, or
nilif the Results is empty. -
Returns the sum of the given property for objects in the Results.
Warning
Only names of properties of a type conforming to the
AddableTypeprotocol can be used.Declaration
Swift
public func sum<U: AddableType>(property: String) -> UParameters
propertyThe name of a property conforming to
AddableTypeto calculate sum on.Return Value
The sum of the given property over all objects in the Results.
-
Returns the average of the given property for objects in the Results.
Warning
Only names of properties of a type conforming to the
AddableTypeprotocol can be used.Declaration
Swift
public func average<U: AddableType>(property: String) -> U?Parameters
propertyThe name of a property conforming to
AddableTypeto calculate average on.Return Value
The average of the given property over all objects in the Results, or
nilif the Results is empty.
-
Register a block to be called each time the Results changes.
The block will be asynchronously called with the initial results, and then called again after each write transaction which changes either any of the objects in the results, or which objects are in the results.
If an error occurs the block will be called with
nilfor the results parameter and a non-nilerror. Currently the only errors that can occur are when opening the Realm on the background worker thread fails.At the time when the block is called, the Results object will be fully evaluated and up-to-date, and as long as you do not perform a write transaction on the same thread or explicitly call realm.refresh(), accessing it will never perform blocking work.
Notifications are delivered via the standard run loop, and so can’t be delivered while the run loop is blocked by other activity. When notifications can’t be delivered instantly, multiple notifications may be coalesced into a single notification. This can include the notification with the initial results. For example, the following code performs a write transaction immediately after adding the notification block, so there is no opportunity for the initial notification to be delivered first. As a result, the initial notification will reflect the state of the Realm after the write transaction.
let results = realm.objects(Dog) print("dogs.count: \(results?.count)") // => 0 let token = results.addNotificationBlock { (dogs, error) in // Only fired once for the example print("dogs.count: \(dogs?.count)") // will only print "dogs.count: 1" } try! realm.write { realm.add(Dog.self, value: ["name": "Rex", "age": 7]) } // end of runloop execution contextYou must retain the returned token for as long as you want updates to continue to be sent to the block. To stop receiving updates, call stop() on the token.
Warning
This method cannot be called during a write transaction, or when the source realm is read-only.
Declaration
Swift
public func addNotificationBlock(block: (results: Results<T>?, error: NSError?) -> ()) -> NotificationTokenParameters
blockThe block to be called with the evaluated results.
Return Value
A token which must be held for as long as you want query results to be delivered.
-
Register a block to be called each time the Results changes.
The block will be asynchronously called with the initial results, and then called again after each write transaction which changes either any of the objects in the results, or which objects are in the results.
This version of this method reports which of the objects in the results were added, removed, or modified in each write transaction as indices within the results. See the RealmCollectionChange documentation for more information on the change information supplied and an example of how to use it to update a UITableView.
At the time when the block is called, the Results object will be fully evaluated and up-to-date, and as long as you do not perform a write transaction on the same thread or explicitly call realm.refresh(), accessing it will never perform blocking work.
Notifications are delivered via the standard run loop, and so can’t be delivered while the run loop is blocked by other activity. When notifications can’t be delivered instantly, multiple notifications may be coalesced into a single notification. This can include the notification with the initial results. For example, the following code performs a write transaction immediately after adding the notification block, so there is no opportunity for the initial notification to be delivered first. As a result, the initial notification will reflect the state of the Realm after the write transaction.
let dogs = realm.objects(Dog) print("dogs.count: \(dogs?.count)") // => 0 let token = dogs.addNotificationBlock { (changes: RealmCollectionChange) in switch changes { case .Initial(let dogs): // Will print "dogs.count: 1" print("dogs.count: \(dogs.count)") break case .Update: // Will not be hit in this example break case .Error: break } } try! realm.write { let dog = Dog() dog.name = "Rex" person.dogs.append(dog) } // end of run loop execution contextYou must retain the returned token for as long as you want updates to continue to be sent to the block. To stop receiving updates, call stop() on the token.
Warning
This method cannot be called during a write transaction, or when the source realm is read-only.
Declaration
Swift
public func addNotificationBlock(block: (RealmCollectionChange<Results> -> Void)) -> NotificationTokenParameters
blockThe block to be called with the evaluated results and change information.
Return Value
A token which must be held for as long as you want query results to be delivered.
-
Returns a
GeneratorOf<T>that yields successive elements in the results.Declaration
Swift
public func generate() -> RLMGenerator<T>
-
The position of the first element in a non-empty collection. Identical to endIndex in an empty collection.
Declaration
Swift
public var startIndex: Int { return 0 } -
The collection’s
past the end
position. endIndex is not a valid argument to subscript, and is always reachable from startIndex by zero or more applications of successor().Declaration
Swift
public var endIndex: Int { return count }
View on GitHub
Install in Dash
Results Class Reference