'message' 事件
message
<Object> 解析的 JSON 对象或原始值。sendHandle
<Handle>net.Socket
或net.Server
对象、或未定义。
当子进程使用 process.send()
发送消息时,则触发 'message'
事件。
消息经过序列化和解析。 结果消息可能与最初发送的消息不同。
如果在衍生子进程时将 serialization
选项设置为 'advanced'
,则 message
参数可以包含 JSON 无法表示的数据。
有关更多详细信息,请参阅高级序列化。
message
<Object> A parsed JSON object or primitive value.sendHandle
<Handle> Anet.Socket
ornet.Server
object, or undefined.
The 'message'
event is triggered when a child process uses
process.send()
to send messages.
The message goes through serialization and parsing. The resulting message might not be the same as what is originally sent.
If the serialization
option was set to 'advanced'
used when spawning the
child process, the message
argument can contain data that JSON is not able
to represent.
See Advanced serialization for more details.