What is Remote Procedure Call (RPC)?
RPC hides the intricacies of the network by using the ordinary process call mechanism familiar to every programmer. A client process calls a function on a remote server and suspends itself unless it gets back the results. Parameters are passed like in any normal procedure. The RPC, like an ordinary procedure, is synchronous. The method that issues the call waits unless it gets the results.