Reputation: 21
I am searching for issues in RMI, especially multithreading issues could you help me to answer the question
the question: What are the multithreading issues in RMI??
Upvotes: 0
Views: 56
Reputation: 311023
The 'multithreading issues in RMI' are that an RMI remote object (server) isn't guaranteed to be single-threaded, so you have to take care of any required synchronization within and between your remote methods yourself.
Upvotes: 1