Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

如何实现子进程之间的通信?

$
0
0

父进程A创建了子进程B、C,我知道父子进程之间通信很容易,直接发消息就可以,但是子进程B和C之间如何直接通信呢?(不考虑子进程之间直接通过socekt发送消息) //A.js var child= require( ‘child_process’ ); var B = child.fork( ‘B.js’ ); var C = child.fork( ‘C.js’ ); //监听子进程B的消息 B.on( ‘message’, function( data ) { console.log( ‘A收到B的消息:’ + data ); });

//父进程A发送消息给子进程B B.send( ‘Hello world from A!’ );

//监听子进程C的消息 C.on( ‘message’, function( data ) { console.log( ‘A收到C的消息:’ + data ); });

//父进程A发送消息给子进程C C.send( ‘Hello world from A!’ );


Viewing all articles
Browse latest Browse all 14821

Trending Articles