blob: b852f804a86ce6ca27fc27a342a52b43d4949f6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
var timer = null;
function handleRequest(request, response) {
response.processAsync();
timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
timer.initWithCallback(
function() {
response.setStatusLine(null, 200, "OK");
response.setHeader("Content-Type", "text/plain", false);
response.write("hello");
response.finish();
},
3000 /* milliseconds */,
Ci.nsITimer.TYPE_ONE_SHOT
);
}
|