priestjim / gen_rpc

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

Block call trial implementation for review. With tests added. Please review #26

Closed linearregression closed 8 years ago

linearregression commented 9 years ago

Basically the same as Call except not have a worker to handle the call processing. Rpc doc on block_call refers to not creating a separate process to handle the call. Block the RPC server from any other incoming requests until the request has been handled....

If this is incorrect or you have better approach, please feel free to rework/junk it as you see fit.

Ref: http://www.erlang.org/doc/man/rpc.html

linearregression commented 8 years ago

Sorry for pushing to get PR's review. It will be nice to get some reviewed?

linearregression commented 8 years ago

Closed. Refer to the cleanup verison. https://github.com/priestjim/gen_rpc/pull/41