As title,
If I have a server method:
Item anItem = inn.getItemById("anItem", "1");
anItem.apply("second_method");
.... other processing
Does the "other processing" execute right away, or does it wait for anItem.apply() to finish?
Thank you,
Frank
As title,
If I have a server method:
Item anItem = inn.getItemById("anItem", "1");
anItem.apply("second_method");
.... other processing
Does the "other processing" execute right away, or does it wait for anItem.apply() to finish?
Thank you,
Frank
Hello Frank,
The 'other processing' is waiting for the anItem.apply() to finish.
A good practice is also to check if anItem.isError() in case "second_method" fails for some reason.
Regards
Hello Frank,
The 'other processing' is waiting for the anItem.apply() to finish.
A good practice is also to check if anItem.isError() in case "second_method" fails for some reason.
Regards
Hello, Thanks
Copyright © 2025 Aras. All rights reserved.