DS.RecordArray#isUpdating

isUpdatingBoolean Defined in addon/-private/system/record-arrays/record-array.js:60 The flag to signal a RecordArray is currently loading data. Example var people = store.peekAll('person'); people.get('isUpdating'); // false people.update(); people.get('isUpdating'); // true

DS.RecordArray#isLoaded

isLoadedBoolean Defined in addon/-private/system/record-arrays/record-array.js:46 The flag to signal a RecordArray is finished loading data. Example var people = store.peekAll('person'); people.get('isLoaded'); // true

DS.RecordArray#content

contentEmber.Arrayprivate Defined in addon/-private/system/record-arrays/record-array.js:34 The array of client ids backing the record array. When a record is requested from the record array, the record for the client id at the same index is materialized, if necessary, by the store.

DS.RecordArray#addInternalModel()

addInternalModel (internalModel, an) private Defined in addon/-private/system/record-arrays/record-array.js:142 Adds an internal model to the RecordArray without duplicates Parameters: internalModel InternalModel an Number optional index to insert at

DS.RecordArray

DS.RecordArray Class Extends: Ember.ArrayProxy Uses: Ember.Evented Defined in: addon/-private/system/record-arrays/record-array.js:12 Module: ember-data A record array is an array that contains records of a certain type. The record array materializes records as needed when they are retrieved for the first time. You should not create record arrays yourself. Instead, an instance of DS.RecordArray or its subclasses will be returned by your application's store in response to queries.

DS.PromiseObject

DS.PromiseObject Class Extends: Ember.ObjectProxy Uses: Ember.PromiseProxyMixin Defined in: addon/-private/system/promise-proxies.js:38 Module: ember-data A PromiseObject is an object that acts like both an Ember.Object and a promise. When the promise is resolved, then the resulting value will be set to the PromiseObject's content property. This makes it easy to create data bindings with the PromiseObject that will be updated when the promise resolves. For more information see the Ember.Pr

DS.PromiseManyArray

DS.PromiseManyArray Class Extends: Ember.ArrayProxy Defined in: addon/-private/system/promise-proxies.js:81 Module: ember-data A PromiseManyArray is a PromiseArray that also proxies certain method calls to the underlying manyArray. Right now we proxy: reload() createRecord() on() one() trigger() off() has()

DS.PromiseArray

DS.PromiseArray Class Extends: Ember.ArrayProxy Uses: Ember.PromiseProxyMixin Defined in: addon/-private/system/promise-proxies.js:7 Module: ember-data A PromiseArray is an object that acts like both an Ember.Array and a promise. When the promise is resolved the resulting value will be set to the PromiseArray's content property. This makes it easy to create data bindings with the PromiseArray that will be updated when the promise resolves. For more information see the Ember.PromiseProxyMix

DS.NumberTransform

DS.NumberTransform Class Extends: DS.Transform Defined in: addon/-private/transforms/number.js:10 Module: ember-data The DS.NumberTransform class is used to serialize and deserialize numeric attributes on Ember Data record objects. This transform is used when number is passed as the type parameter to the DS.attr function. Usage app/models/score.js import DS from 'ember-data'; export default DS.Model.extend({ value: DS.attr('number'), player: DS.belongsTo('player'), date: DS.attr('da

DS.NotFoundError

DS.NotFoundError Class Defined in: addon/adapters/errors.js:147 Module: ember-data