Interface BatchRankChange
public interface BatchRankChange
Represents the result of performing rank operations on a batch of rank items.
Note: If there were errors during the batch operation, then
(getSuccessfulRankChanges().size() + getErrorCollections().size()) is not guaranteed to equal the size of the batch.
-
Method Summary
Modifier and TypeMethodDescription
-
Method Details
-
getSuccessfulRankChanges
List<RankChange> getSuccessfulRankChanges()- Returns:
- the list of rank changes that completed successfully
-
getErrorCollections
Map<Long,ErrorCollection> getErrorCollections()- Returns:
- the list of errors that occurred during the batch rank operations
-