What is the difference between Java RMI and RPC?

后端 未结 8 927
-上瘾入骨i
-上瘾入骨i 2020-12-12 10:00

What is the actual difference between Java RMI and RPC?

I have read in some places that RMI uses Objects?

8条回答
  •  长情又很酷
    2020-12-12 10:38

    The only real difference between RPC and RMI is that there is objects involved in RMI: instead of invoking functions through a proxy function, we invoke methods through a proxy.

提交回复
热议问题