ProxyMixin#content

contentEmber.Objectprivate Defined in packages/ember-runtime/lib/mixins/-proxy.js:54 The object whose properties will be forwarded. Default: null

Ember.deprecateFunc()

deprecateFunc (message, options, func) Functionprivate Defined in packages/ember-debug/lib/index.js:91 Alias an old, deprecated method with its new counterpart. Display a deprecation warning with the provided message and a stack trace (Chrome and Firefox only) when the assigned method is called. In a production build, this method is defined as an empty function (NOP). Ember.oldMethod = Ember.deprecateFunc('Please use the new, updated method', Ember.newMethod); Parameters: message String

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