util: mark util.pump() as deprecated

This commit is contained in:
Ben Noordhuis 2012-08-05 23:31:28 +02:00
parent 74d076caf1
commit 3219616f43
2 changed files with 5 additions and 3 deletions

View File

@ -170,7 +170,7 @@ Returns `true` if the given "object" is an `Error`. `false` otherwise.
## util.pump(readableStream, writableStream, [callback])
Experimental
**Deprecated**
Read the data from `readableStream` and send it to the `writableStream`.
When `writableStream.write(data)` returns `false` `readableStream` will be

View File

@ -482,7 +482,7 @@ exports.exec = exports.deprecate(function() {
}, 'util.exec is now called `child_process.exec`.');
exports.pump = function(readStream, writeStream, callback) {
function pump(readStream, writeStream, callback) {
var callbackCalled = false;
function call(a, b, c) {
@ -517,7 +517,9 @@ exports.pump = function(readStream, writeStream, callback) {
readStream.destroy();
call(err);
});
};
}
exports.pump = exports.deprecate(pump,
'util.pump() is deprecated. Use ReadableStream.prototype.pump() instead.');
/**