Skip to Main Content

Java APIs

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

consecutive method invocations

843793Dec 14 2004 — edited Dec 14 2004
I 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 ?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 11 2005
Added on Dec 14 2004
5 comments
127 views