Interface IProcessingUnitStatus

    • Method Detail

      • hasNext

        boolean hasNext()
        Defines if there is more to process or not.
        Returns:
        true if it has more element; otherwise it has ended.
      • getNumberOfSuccessfulUnits

        java.lang.Long getNumberOfSuccessfulUnits()
        Gets the number of successful units that were processed in the last run.
        Returns:
        the number of successful units or null.
      • getNumberOfFailedUnits

        java.lang.Long getNumberOfFailedUnits()
        Gets the number of failed units processed that were failed in the last run.
        Returns:
        the number of failed units or null.
      • getNumberOfUnprocessedUnits

        java.lang.Long getNumberOfUnprocessedUnits()
        Optionally, the number of all unprocessed units can be returned.
        Returns:
        the number of unprocessed units.
      • getProcessingRuntimeStatus

        ProcessingRuntimeStatus getProcessingRuntimeStatus()
        The processing runtime status for this run. If it's null then it will be interpreted as successful in the last run.
        Returns:
        the processing runtime status or null
      • getStatusMessageList

        java.util.List<java.lang.String> getStatusMessageList()
        A return message can be passed back. In case it's null then no status message is available in the last run.
        Returns:
        the status message list or null
      • getProcessingUnitStatistic

        IProcessingUnitStatistic getProcessingUnitStatistic()
        Get the processing unit statistic of the last call.
        Returns:
        the processing unit statistic of last call or null.