zlib.close()方法是Zlib模块的内置应用程序编程接口,用于关闭基础句柄。
用法:
zlib.close( callback )
参数:此方法接受包含回调函数的单个参数回调。
以下示例说明了Node.js中zlib.close()方法的使用:
范例1:
// Node.js program to demonstrate the
// zlib.close() method
// Including zlib module
const zlib = require('zlib');
// Constructing createGzip and createGunzip
const input = zlib.createGzip();
const output = zlib.createGunzip();
// Piping
input.pipe(output);
// Write to stream
input.write('GeeksforGeeks');
// Calling flush method
input.flush();
// Calling close method
input.close();
// Check output
output.on('data', (d) => {
console.log('Input:Data flush received '
+ d.length + ' bytes');
});
console.log("Closed!");
输出:
Closed!
范例2:
// Node.js program to demonstrate the
// zlib.close() method
// Including zlib and fs module
const zlib = require("zlib");
const fs = require('fs');
// Creating readable Stream
const inp = fs.createReadStream('input.text');
// Creating writable stream
const out = fs.createWriteStream('input.txt.gz');
// Calling createDeflateRaw method
const defR = zlib.createDeflateRaw();
// Calling close method
defR.close();
// Piping
inp.pipe(defR).pipe(out);
console.log("Program Completed!");
输出:
Program Completed!
在这里,由于close方法会关闭隐藏的句柄,因此不会进行管道传递。
参考: https://nodejs.org/api/zlib.html#zlib_zlib_close_callback
相关用法
- Node.js GM modulate()用法及代码示例
- Node.js GM monochrome()用法及代码示例
- Node.js GM equalize()用法及代码示例
- Node.js GM enhance()用法及代码示例
- Node.js GM threshold()用法及代码示例
- Node.js GM thumbnail()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | zlib.close() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。