当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


node.js Stream writable.cork()用法及代码示例


writable.cork()方法是Stream模块的内置应用程序编程接口,用于将每个数据写入缓冲存储器。当我们使用stream.uncork()方法或stream.end()方法时,缓冲区数据将被刷新。

用法:

writable.cork() 

参数:此方法不接受任何参数。


返回值:如果使用此方法,则在此方法之后写入的数据不会显示在输出中,因为这些数据存储在存储器中,并且可以使用某些其他特定方法再次显示。

以下示例说明了Node.js中writable.cork()方法的使用:

范例1:

// Node.js program to demonstrate the      
// writable.cork() method   
const stream = require('stream'); 
  
// Creating a stream and creating  
// a write function 
const writable = new stream.Writable({ 
  
  // Write function with its  
  // parameters 
  write:function(chunk, encoding, next) { 
  
    // Converting the chunk of 
    // data to string 
    console.log(chunk.toString()); 
    next(); 
  } 
}); 
  
// Writing data 
writable.write('hi'); 
  
// Calling cork() function 
writable.cork(); 
  
// Again writing some data 
writable.write('hello'); 
writable.write('world');

输出:

hi
true

此处,在上述示例中,仅显示在cork()方法之前写入的数据,并且在对其进行插塞之后写入的数据即存储在存储器中。

范例2:

// Node.js program to demonstrate the      
// writable.cork() method   
const stream = require('stream'); 
  
// Creating a stream and creating  
// a write function 
const writable = new stream.Writable({ 
  
  // Write function with its  
  // parameters 
  write:function(chunk, encoding, next) { 
  
    // Converting the chunk of 
    // data to string 
    console.log(chunk.toString()); 
    next(); 
  } 
}); 
  
// Writing data 
writable.write('hi'); 
  
// Again writing some data 
writable.write('hello'); 
writable.write('world'); 
  
// Calling cork() function 
writable.cork();

输出

hi
hello
world

在上面的示例中,最后写入了cork()方法,因此,没有任何数据存储在内存中。因此,所有写入的数据都将显示在输出中。

参考: https://nodejs.org/api/stream.html#stream_writable_cork



相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | Stream writable.cork() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。