Hi there,
How is @OnSave treated regarding asynchronicity ?
Precisely, considering that I have a validation method that validate my bean and throws an exception when the bean is invalid.
Now, when I save my bean using ofy().save().entity(myBean); will the exception be thrown as expected or do I have to call .now(); to make sure that I can catch the exception ?
Other way to ask the question : is @OnSave annotation is called during ofy().save().entity(...) or during .now() ?