subprocess.disconnect()


关闭父进程和子进程之间的 IPC 通道,一旦没有其他连接使其保持活动状态,则允许子进程正常退出。 调用此方法后,父子进程中的 subprocess.connectedprocess.connected 属性(分别)将设置为 false,进程之间将无法再传递消息。

当接收过程中没有消息时,将触发 'disconnect' 事件。 这通常会在调用 subprocess.disconnect() 后立即触发。

当子进程是 Node.js 实例(例如使用 child_process.fork() 衍生)时,则可以在子进程中调用 process.disconnect() 方法来关闭 IPC 通道。

Closes the IPC channel between parent and child, allowing the child to exit gracefully once there are no other connections keeping it alive. After calling this method the subprocess.connected and process.connected properties in both the parent and child (respectively) will be set to false, and it will be no longer possible to pass messages between the processes.

The 'disconnect' event will be emitted when there are no messages in the process of being received. This will most often be triggered immediately after calling subprocess.disconnect().

When the child process is a Node.js instance (e.g. spawned using child_process.fork()), the process.disconnect() method can be invoked within the child process to close the IPC channel as well.