當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。