DS.SnapshotRecordArray#_snapshots

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

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

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

DS.ManyArray#reload()

reloadpublic Defined in addon/-private/system/many-array.js:236

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

Route#serializeQueryParam()

serializeQueryParam (value, urlKey, defaultValueType) private Defined in packages/ember-routing/lib/system/route.js:390 Serializes value of the query parameter based on defaultValueType Parameters: value Object urlKey String defaultValueType String

Enumerable#hasEnumerableObservers

hasEnumerableObserversBooleanprivate Defined in packages/ember-runtime/lib/mixins/enumerable.js:926 Becomes true whenever the array currently has observers watching changes on the array.

DefaultResolver#translateToContainerFullname()

translateToContainerFullname (type, name) private Defined in packages/ember-application/lib/system/resolver.js:450 Converts provided name from the backing namespace into a container lookup name. Examples: App.FooBarHelper -> helper:foo-bar App.THelper -> helper:t Parameters: type String name String

TextField#max

maxStringpublic Defined in packages/ember-htmlbars/lib/components/text_field.js:155 Available since 1.4.0 The max attribute of input element used with type="number" or type="range". Default: null