1.

Why Is The Function Or Role Of Skeleton In Rmi?

Answer»

Every object that can be remotely accessed have a corresponding skeleton that FUNCTIONS like the original object. It is responsible for DISPATCHING the call that is made to the actual remote object for the implementation and allow it to be IMPLEMENTED USING the services provided by RMI. It allows the incoming method invocation to unmarshals i.e. only read the parameters used for the remote method. It invokes the method that is used by the actual remote object and after implementation marshals the result to the caller who is the original caller for the object.

Every object that can be remotely accessed have a corresponding skeleton that functions like the original object. It is responsible for dispatching the call that is made to the actual remote object for the implementation and allow it to be implemented using the services provided by RMI. It allows the incoming method invocation to unmarshals i.e. only read the parameters used for the remote method. It invokes the method that is used by the actual remote object and after implementation marshals the result to the caller who is the original caller for the object.



Discussion

No Comment Found