writable.cork()方法用于强制所有写入的数据缓冲在内存中。只有在调用stream.uncork()或stream.end()方法后,缓冲数据才会从缓冲存储器中删除。
语法
cork()
writeable.cork()
登录后复制
开塞()
writeable.uncork()
登录后复制
参数
因为它缓冲写入的数据。唯一需要的参数将是可写数据。
示例
创建一个名为 cork.js 的文件并复制以下代码片段。创建文件后,使用以下命令运行此代码,如下例所示 –
node cork.js
登录后复制
cork.js
现场演示
// Program to demonstrate writable.cork() methodconst stream = require('stream');// Creating a data stream with writableconst writable = new stream.Writable({ // Writing the data from stream write: function(chunk, encoding, next) { // Converting the data chunk to be displayed console.log(chunk.toString()); next(); }});// Writing datawritable.write('Hi - This data is printed');// Calling the cork() functionwritable.cork();// Again writing some datawritable.write('Welcome to TutorialsPoint !');writable.write('SIMPLY LEARNING ');writable.write('This data will be corked in the memory');
登录后复制
输出
C:homeode>> node cork.jsHi - This data is printed
登录后复制
只有在 cork() 方法之间写入的数据才会被打印,而其余数据将被塞入缓冲存储器中。下面的示例展示了如何从缓冲区内存中解锁上述数据。
示例
让我们再看一个有关如何 uncork() 的示例 – uncork.js
现场演示
// Program to demonstrate writable.cork() methodconst stream = require('stream');// Creating a data stream with writableconst writable = new stream.Writable({ // Writing the data from stream write: function(chunk, encoding, next) { // Converting the data chunk to be displayed console.log(chunk.toString()); next(); }});// Writing datawritable.write('Hi - This data is printed');// Calling the cork() functionwritable.cork();// Again writing some datawritable.write('Welcome to TutorialsPoint !');writable.write('SIMPLY LEARNING ');writable.write('This data will be corked in the memory');// Flushing the data from buffered memorywritable.uncork()
登录后复制
输出
C:homeode>> node uncork.jsHi - This data is printedWelcome to TutorialsPoint !SIMPLY LEARNINGThis data will be corked in the memory
登录后复制
使用 uncork() 方法刷新缓冲内存后,就会显示上面示例中的完整数据。
以上就是Node.js 中的 Stream writable.cork() 和 uncork() 方法的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2630302.html