priestjim / gen_rpc

A scalable RPC library for Erlang-VM based languages
Apache License 2.0
221 stars 81 forks source link

[Question] Why is it called Out-of-band messaging? #7

Closed linearregression closed 9 years ago

linearregression commented 9 years ago

It looks like the library is for 'virtual Erlang node'. At a glance:

Out of band is usually communication outside the logical data stream. E.g. signalling in telecom switch is done via a signalling plane ant not sharing logical resource with the data stream ).

Just wondering.

priestjim commented 9 years ago

It is out of band because it's not using the usual Erlang VM's channels for communication (the VM's remote spawn mechanism or rpc/rex)!

linearregression commented 9 years ago

Thanks. Oh you are referring to rpc and rex server. I was thinking about something else.