Package io.jmix.flowui.model
Class DataContext.PostSaveEvent
java.lang.Object
java.util.EventObject
io.jmix.flowui.model.DataContext.PostSaveEvent
- All Implemented Interfaces:
 Serializable
- Enclosing interface:
 - DataContext
 
Event sent after saving changes.
 
 In this event listener, you can get the collection of saved entities returned
 from DataManager or a custom service. These entities are already merged
 into the DataContext. For example:
 
     @Subscribe(target = Target.DATA_CONTEXT)
     protected void onPostSave(DataContext.PostSaveEvent event) {
         log.debug("Saved: " + event.getSavedInstances());
     }
 - 
Field Summary
Fields inherited from class java.util.EventObject
source - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionReturns the collection of saved entities.The data context which sent the event.Methods inherited from class java.util.EventObject
toString 
- 
Constructor Details
- 
PostSaveEvent
 
 - 
 - 
Method Details
- 
getSource
The data context which sent the event.- Overrides:
 getSourcein classEventObject
 - 
getSavedInstances
Returns the collection of saved entities. 
 -