Package com.gigaspaces.client
Interface ChangedEntryDetails<T>
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ChangeEntryDetailsImpl,FailedChangedEntryDetailsImpl
The result of a change operation executed on an entry
- Since:
- 9.1
- Author:
- Niv Ingberg
-
Method Summary
Modifier and TypeMethodDescriptionReturns the results of the change operations which were inflicted on the changed entry.getId()Returns the id of the changed entry.Returns the changed entry type name.intReturns the version of the entry after the change opertion.
-
Method Details
-
getTypeName
String getTypeName()Returns the changed entry type name. -
getId
Object getId()Returns the id of the changed entry. -
getVersion
int getVersion()Returns the version of the entry after the change opertion. -
getChangeOperationsResults
List<ChangeOperationResult> getChangeOperationsResults()Returns the results of the change operations which were inflicted on the changed entry. The order of the list will be correlated to the order of operation which were specified on theChangeSetthat was used for this change operation.- Since:
- 9.7
-