fune/devtools/server/tests/unit/registertestactors-03.js
Michael Brennan 8229796378 Bug 1325989 - Resolve ESLint issues in devtools/server/tests/unit. r=jryans
--HG--
extra : rebase_source : 855f1da9fc88af46e8be78c94762a90df29cb75f
2017-03-18 12:26:05 +01:00

42 lines
991 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
var {RetVal, Actor, ActorClassWithSpec, Front, FrontClassWithSpec,
generateActorSpec} = require("devtools/shared/protocol");
var Services = require("Services");
const lazySpec = generateActorSpec({
typeName: "lazy",
methods: {
hello: {
response: { str: RetVal("string") }
}
}
});
exports.LazyActor = ActorClassWithSpec(lazySpec, {
initialize: function (conn, id) {
Actor.prototype.initialize.call(this, conn);
Services.obs.notifyObservers(null, "actor", "instantiated");
},
hello: function (str) {
return "world";
}
});
Services.obs.notifyObservers(null, "actor", "loaded");
exports.LazyFront = FrontClassWithSpec(lazySpec, {
initialize: function (client, form) {
Front.prototype.initialize.call(this, client);
this.actorID = form.lazyActor;
client.addActorPool(this);
this.manage(this);
}
});