Instrumentation

Ember.Instrumentation Namespace

PRIVATE

Defined in: packages/ember-metal/lib/instrumentation.js:7

Module: ember

The purpose of the Ember Instrumentation module is to provide efficient, general-purpose instrumentation for Ember.

Subscribe to a listener by using Ember.subscribe:

Ember.subscribe("render", {
  before(name, timestamp, payload) {

  },

  after(name, timestamp, payload) {

  }
});

If you return a value from the before callback, that same value will be passed as a fourth parameter to the after callback.

Instrument a block of code by using Ember.instrument:

Ember.instrument("render.handlebars", payload, function() {
  // rendering logic
}, binding);

Event names passed to Ember.instrument are namespaced by periods, from more general to more specific. Subscribers can listen for events by whatever level of granularity they are interested in.

In the above example, the event is render.handlebars, and the subscriber listened for all events beginning with render. It would receive callbacks for events named render, render.handlebars, render.container, or even render.handlebars.layout.

instrument (name, _payload, callback, binding) private

Defined in packages/ember-metal/lib/instrumentation.js:81

Notifies event's subscribers, calls before and after hooks.

Parameters:

name [String]
Namespaced event name.
_payload Object
callback Function
Function that you're instrumenting.
binding Object
Context that instrument function is called with.

resetprivate

Defined in packages/ember-metal/lib/instrumentation.js:247

Resets Ember.Instrumentation by flushing list of subscribers.

subscribe (pattern, object) Subscriberprivate

Defined in packages/ember-metal/lib/instrumentation.js:184

Subscribes to a particular event or instrumented block of code.

Parameters:

pattern [String]
Namespaced event name.
object [Object]
Before and After hooks.

Returns:

Subscriber

unsubscribe (subscriber) private

Defined in packages/ember-metal/lib/instrumentation.js:225

Unsubscribes from a particular event or instrumented block of code.

Parameters:

subscriber [Object]

© 2017 Yehuda Katz, Tom Dale and Ember.js contributors
Licensed under the MIT License.
https://emberjs.com/api/classes/Ember.Instrumentation.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部