blob: ebee7f8e1cf6d186709ae04280a2234c7b970d32 (
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
);
}
|