Package org.eclipse.emf.cdo.view
Interface CDOViewInvalidationEvent
- 
- All Superinterfaces:
- CDOTimeProvider,- CDOViewEvent,- org.eclipse.net4j.util.event.IEvent
 
 public interface CDOViewInvalidationEvent extends CDOViewEvent, CDOTimeProvider Aview eventfired when passive updates (commit notifications) are being received from a remote repository.Passive updatesmust be enabled for this event to be fired.- Since:
- 2.0
- Author:
- Simon McDuff
- See Also:
- CDOSessionInvalidationEvent,- CDOInvalidationNotification,- CDOAdapterPolicy
- No Implement
- This interface is not intended to be implemented by clients.
- No Extend
- This interface is not intended to be extended by clients.
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<CDOObject>getDetachedObjects()Returns a set of theCDOObjectsof the removed objects.java.util.Set<CDOObject>getDirtyObjects()Returns a set of theCDOObjectsof the modified objects.java.util.Map<CDOObject,CDORevisionDelta>getRevisionDeltas()Returns a map with thechange deltasper object.longgetTimeStamp()Returns the time stamp of the server transaction if this event was sent as a result of a successfully committed transaction orLOCAL_ROLLBACKif this event was sent due to a local rollback.- 
Methods inherited from interface org.eclipse.emf.cdo.view.CDOViewEventgetSource
 
- 
 
- 
- 
- 
Method Detail- 
getTimeStamplong getTimeStamp() Returns the time stamp of the server transaction if this event was sent as a result of a successfully committed transaction orLOCAL_ROLLBACKif this event was sent due to a local rollback.- Specified by:
- getTimeStampin interface- CDOTimeProvider
 
 - 
getDirtyObjectsjava.util.Set<CDOObject> getDirtyObjects() Returns a set of theCDOObjectsof the modified objects.
 - 
getRevisionDeltasjava.util.Map<CDOObject,CDORevisionDelta> getRevisionDeltas() Returns a map with thechange deltasper object. Note that this map may contain object/nullmappings, if the delta is not available!- Since:
- 4.0
 
 - 
getDetachedObjectsjava.util.Set<CDOObject> getDetachedObjects() Returns a set of theCDOObjectsof the removed objects.
 
- 
 
-