Hi all
I have a method named like that: SetMessageList. Since Ice.3.4, we have a new async style invoke, so i use:
r = prx.begin_SetMessageList(xxx)
r.waitForSent()
r.waitForCompleted()
my question is whether i need to put r.getProxy().end_SetMessageList(r)
after "r.waitForCompleted()"? According to the doc, the "end_XX" ought to be invoked anyhow.
Thanks.

Reply With Quote