Interface IProjectRecordsBulkUpdateResult
public interface IProjectRecordsBulkUpdateResult
Result of a bulk update operation.
The result contains the number of form records that were processed, the number of form records that were updated successfully, the number of form records that failed to update and the duration of the operation in milliseconds.
-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the duration of the operation in milliseconds.intReturns the number of form records that failed to update.intReturns the total number of form records that were processed.intReturns the number of form records that were updated successfully.
-
Method Details
-
getRowCount
int getRowCount()Returns the total number of form records that were processed.- Returns:
- the total number of form records that were processed
-
getSuccessCount
int getSuccessCount()Returns the number of form records that were updated successfully.- Returns:
- the number of form records that were updated successfully
-
getErrorCount
int getErrorCount()Returns the number of form records that failed to update.- Returns:
- the number of form records that failed to update
-
getDurationInMilliseconds
long getDurationInMilliseconds()Returns the duration of the operation in milliseconds.- Returns:
- the duration of the operation in milliseconds
-