Subdomain Posts
None | 11 days ago
None | 11 days ago
None | 11 days ago
None | 11 days ago
JavaScript | 22 days ago
JavaScript | 26 days ago
JavaScript | 26 days ago
JavaScript | 26 days ago
None | 26 days ago
None | 34 days ago
Recent Posts
C | 33 sec ago
None | 1 min ago
None | 2 min ago
PHP | 4 min ago
None | 5 min ago
PHP | 5 min ago
None | 5 min ago
None | 6 min ago
XML | 7 min ago
None | 7 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By hns on the 8th of Dec 2009 06:01:58 PM
Download |
Raw |
Embed |
Report
exports.app = function myAsyncApp(request){
return function(responder){
responder.init(200, {});
var i = 0;
var intervalId = setInterval(function(){
responder.write("Every second another message");
if(i++ == 10){
responder.close();
clearInterval(intervalId);
}
}, 1000);
};
}
function middleware(app) {
return function(request) {
var response = app(request);
if (typeof response === "function") {
return function(responder) {
// createResponderProxy is a utility function
var proxy = createResponderProxy(responder);
proxy.[init|write|close] = ...;
response.then(proxy)
};
} else {
// sync
}
}
}
Submit a correction or amendment below.
Make A New Post