Raya
Raya

Reputation: 21

Multithreading issues in RMI

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

Answers (1)

user207421
user207421

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

Related Questions