From 60b45dcbb66ad754c70693adba80595ae67dc026 Mon Sep 17 00:00:00 2001 From: Andreas Madsen Date: Fri, 8 Jun 2012 20:24:52 +0200 Subject: [PATCH] domain: document and test dispose event --- doc/api/domain.markdown | 2 ++ test/simple/test-domain-http-server.js | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/api/domain.markdown b/doc/api/domain.markdown index f8df926ab81..af868b650fb 100644 --- a/doc/api/domain.markdown +++ b/doc/api/domain.markdown @@ -258,6 +258,8 @@ The intention of calling `dispose` is generally to prevent cascading errors when a critical part of the Domain context is found to be in an error state. +Once the domain is disposed the `dispose` event will emit. + Note that IO might still be performed. However, to the highest degree possible, once a domain is disposed, further errors from the emitters in that set will be ignored. So, even if some remaining actions are still diff --git a/test/simple/test-domain-http-server.js b/test/simple/test-domain-http-server.js index bd6336b57f1..f9962d3b8d4 100644 --- a/test/simple/test-domain-http-server.js +++ b/test/simple/test-domain-http-server.js @@ -28,7 +28,8 @@ var objects = { foo: 'bar', baz: {}, num: 42, arr: [1,2,3] }; objects.baz.asdf = objects; var serverCaught = 0; -var clientCaught = 0 +var clientCaught = 0; +var disposeEmit = 0; var server = http.createServer(function(req, res) { var dom = domain.create(); @@ -84,6 +85,10 @@ function next() { dom.dispose(); }); + dom.on('dispose', function() { + disposeEmit += 1; + }); + var req = http.get({ host: 'localhost', port: common.PORT, path: p }); dom.add(req); req.on('response', function(res) { @@ -111,5 +116,6 @@ function next() { process.on('exit', function() { assert.equal(serverCaught, 2); assert.equal(clientCaught, 2); + assert.equal(disposeEmit, 2); console.log('ok'); });