blob: 02d5d9dffb3582747ad0076d578bf7266fb13fa0 (
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();
},
30000 /* milliseconds */,
Ci.nsITimer.TYPE_ONE_SHOT
);
}
|