child.send(message[, sendHandle[, options]][, callback])
message <Object>
sendHandle <Handle>
options <Object>
callback <Function>
Return: <Boolean>
When an IPC channel has been established between the parent and child ( i.e. when using child_process.fork()), the child.send() method can be used to send messages to the child process. When the child process is a Node.js instance, these messages can be received via the process.on('message') event.
For exam