假设customWS
是可写流..
util.inherits(customWS, stream.Writable);
我们实现了逻辑来处理_write()
中的写入,如下所示。
customWS.prototype._write = function(chunk, encoding, done) {
// ...
}
现在要使用customWS
类,我们会做类似下面的事情。
aReadableStream.pipe(new customWS()).on('finish', callback);
那么callback
函数的参数是什么?
我可以传递callback
之类的..
function(data) {
// ...
}
..还是修好了?
如果它没有修复,那么如何在customWS
类中实现这样的回调?
有什么像......
// in the implementation of customWS class
customWS.prototype._finish = function(user_specified_callback) {
user_specified_callback(some_data_say_a_bool_val);
}
// in the code, where i use the customWS class
aReadableStream.pipe(new customWS()).on('finish', function(flag) {
if (flag) {
console.log('yes');
}
});