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 Type
    Method
    Description
    long
    Returns the duration of the operation in milliseconds.
    int
    Returns the number of form records that failed to update.
    int
    Returns the total number of form records that were processed.
    int
    Returns 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