InterviewSolution
Saved Bookmarks
| 1. |
Does Rmi Handle "out" And "inout" Parameters (like Corba)? |
|
Answer» RMI does not support "out" or "INOUT" parameters, just LIKE the rest of the CORE JAVA programming language. All remote calls are methods of a remote object. Local objects are passed by COPY and remote objects are passed by reference to a stub. RMI does not support "out" or "inout" parameters, just like the rest of the core Java programming language. All remote calls are methods of a remote object. Local objects are passed by copy and remote objects are passed by reference to a stub. |
|