Reputation: 537
What is the difference between the PreInsertEventListener
and the PreUpdateEventListener
? Where do I read about the various EventListeners and what they do ?
Upvotes: 1
Views: 522
Reputation: 11120
PreInsertEventListener
is called before inserting an item in the datastore.
PreUpdateEventListener
is called before updating the datastore.
Some of the Event Listeners can be found from here.
Upvotes: 1