Rpc
Remote procedure call or better known as RPC, is an Inter-process communication technology that allows a computer program to cause a procedure or a subroutine to execute in another address space without the programmer explicitly coding the details for this remote interaction. It means the programmer would write essentially the same code, let the subroutine be local to the executing program or let it be remote. RPC is reffered as remote invocation or remote method invocation, when the software in question is written.
|