Ember.inject

Ember.inject Namespace PUBLIC Defined in: packages/ember-runtime/lib/inject.js:4 Module: ember-runtime Namespace for injection helper methods.

PromiseProxyMixin#reason

reasonpublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:93 If the proxied promise is rejected this will contain the reason provided. Default: null

DS.JSONSerializer#_getMappedKey()

_getMappedKey (key) Stringprivate Defined in addon/serializers/json.js:795 Looks up the property key that was set by the custom attr mapping passed to the serializer. Parameters: key String Returns: String key

DataAdapter#getRecordKeywords()

getRecordKeywordsArrayprivate Defined in packages/ember-extension-support/lib/data_adapter.js:447 Returns keywords to match when searching records. Returns: Array Relevant keywords for search.

DS.Store#unloadRecord()

unloadRecord (record) Defined in addon/-private/system/store.js:406 For symmetry, a record can be unloaded via the store. Only non-dirty records can be unloaded. Example store.findRecord('post', 1).then(function(post) { store.unloadRecord(post); }); Parameters: record DS.Model

Ember.getEngineParent()

getEngineParent (engine) EngineInstancepublic Defined in packages/ember-application/lib/system/engine-parent.js:10 getEngineParent retrieves an engine instance's parent instance. Parameters: engine EngineInstance An engine instance. Returns: EngineInstance The parent engine instance.

The Run Loop

The Run Loop Ember's internals and most of the code you will write in your applications takes place in a run loop. The run loop is used to batch, and order (or reorder) work in a way that is most effective and efficient. It does so by scheduling work on specific queues. These queues have a priority, and are processed to completion in priority order. For basic Ember app development scenarios, you don't need to understand the run loop or use it directly. All common paths are paved nicely for yo

DS.SnapshotRecordArray#_snapshots

_snapshots{Array}private Defined in addon/-private/system/snapshot-record-array.js:14 An array of snapshots

DS.RecordArray#objectAtContent()

objectAtContent (index) DS.Modelprivate Defined in addon/-private/system/record-arrays/record-array.js:91 Retrieves an object from the content by index. Parameters: index Number Returns: DS.Model record

DS.Errors#_add()

_addprivate Defined in addon/-private/system/model/errors.js:241 Adds error messages to a given attribute without sending event.