可写流的close事件处理程序的第一个参数是什么?

时间:2018-03-27 15:08:28

标签: javascript node.js stream

Writeable流关闭时,close事件处理程序将使用参数false执行。 docs未指定该参数代表的内容,就像它们对error事件所做的那样。有人知道false的意思吗?

let proc: ChildProcess = cp.spawn(somePath);
proc.stdin.on("close", () => { // kill the spawned process to execute this handler
    console.log(arguments); // [false]
}

1 个答案:

答案 0 :(得分:1)

参数为isException

您可以通过close处理console.trace()处理程序内部的堆栈跟踪来自行推断出这一点,这将为您提供:

Trace
    at Socket.require.spawn.stdin.on (/Users/user/Desktop/support/f.js:2:13)
    at Socket.emit (events.js:182:13)
    at Pipe._handle.close [as _onclose] (net.js:596:12)