On May 17, 2007, at 11:00 AM, Ilya Sterin wrote:
Jason, that definitelly helps, thanks. When you say minimize calls, as of course you would with any remote operations, though you have J2EE patterns like remote proxy, Transfer Objects, etc... I take it you're refering to just good all RMI practices, right? There is no way to say optimize Inline::Java to minimize the RMI invocations, since my understanding is that right now the remote interface is invoked on each method/field invocation?
Yes, correct. I was referring to the number of java calls made, not optimizing Inline::Java itself.
Just remain aware of the overhead of the calls you'll be making and I'm sure you'll be able to work it out.
-- J.