You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scite-i...@googlegroups.com
Gianfranco:
> OnBeforeSave
> OnSave
> OnSavePointReached
> OnSave
>
> How can I manage to launch the rendering procedure once at save-time? Is it safe to use OnSavePointReached for post-processing in general?
Saves now occur on a separate thread: one OnSave is from the code asking for the save which isn't aware that the save is occurring in the background and the second is from the background save thread completing. While it would be worthwhile avoiding the initial OnSave when threading, background saving can be turned off by setting a suitably large value for it to be active:
background.save.size=1000000
Neil
Neil Hodgson
unread,
May 5, 2013, 5:36:23 AM5/5/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scite-i...@googlegroups.com
Me:
> Saves now occur on a separate thread: one OnSave is from the code asking for the save which isn't aware that the save is occurring in the background and the second is from the background save thread completing.
This is now fixed - for threaded saving, OnSave is only called when the save thread has completed.