Hi guys,
I have a multi-threaded
Java application which acts as both a CORBA client and server. As a client there are multiple threads which can invoke methods on the server and each of these threads share a single object reference to the object on the server which carries out the necessary processing.
I'm wondering if there are any issues (performance,
thread safety or others) with having multiple threads sharing the same object reference?
Thanks for your help,
John