cluster: Remove eachWorker, workerCount
authorRyan Dahl <ry@tinyclouds.org>
Fri, 4 Nov 2011 22:14:26 +0000 (15:14 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Fri, 4 Nov 2011 22:14:38 +0000 (15:14 -0700)
unnecessary

doc/api/cluster.markdown
lib/cluster.js

index 7df84b1..43a0190 100644 (file)
@@ -45,18 +45,6 @@ Boolean flags to determine if the current process is a master or a worker
 process in a cluster. A process `isMaster` if `process.env.NODE_WORKER_ID`
 is undefined.
 
-### cluster.eachWorker(cb)
-
-Synchronously iterates over all of the workers.
-
-    cluster.eachWorker(function(worker) {
-      console.log("worker pid=" + worker.pid);
-    });
-
-### cluster.workerCount()
-
-Returns the number of workers.
-
 ### Event: 'death'
 
 When any of the workers die the cluster module will emit the 'death' event.
index 9e8a394..589798e 100644 (file)
@@ -128,7 +128,7 @@ function handleWorkerMessage(worker, message) {
 }
 
 
-cluster.eachWorker = function(cb) {
+function eachWorker(cb) {
   // This can only be called from the master.
   assert(cluster.isMaster);
 
@@ -140,15 +140,6 @@ cluster.eachWorker = function(cb) {
 };
 
 
-cluster.workerCount = function() {
-  var c = 0;
-  cluster.eachWorker(function() {
-    c++;
-  });
-  return c;
-};
-
-
 cluster.fork = function() {
   // This can only be called from the master.
   assert(cluster.isMaster);