consecutive method invocations
843793Dec 14 2004 — edited Dec 14 2004I have a remote object 'rObject' which implements a remote method 'rMethod'. The remote method 'rMethod' returns an Object. I invoke the method on the object twice (different instances) :
Object o1 = rObject1.rMethod (...) ;
Object o2 = rObject2.rMethod (...) ;
Will the second line be executed after rMethod in line 1 has returned a value ? That is, will the execusion follow a sequence, or will the two start executing as if they were threads ?