what is stub on the “server” and what does skeleton mean?

前端 未结 7 716
夕颜
夕颜 2021-01-01 13:34

What does stub do on the server side ? And what is a skeleton ?

\"from

Th

相关标签:
7条回答
  • 2021-01-01 14:37

    Stub and skeleton both hide some complexity.

    The stub hides the serialization of parameters and the network-level communication in order to present a simple invocation mechanism to the caller.

    The skeleton is responsible for dispatching the call to the actual remote object implementation.

    http://docs.oracle.com/javase/7/docs/platform/rmi/spec/rmi-arch2.html

    http://www-itec.uni-klu.ac.at/~harald/ds2001/rmi/rmi.html

    0 讨论(0)
提交回复
热议问题