Interface StepExecutionDao

    • Method Detail

      • saveStepExecution

        void saveStepExecution​(StepExecution stepExecution)
        Save the given StepExecution. Preconditions: Id must be null. Postconditions: Id will be set to a unique Long.
        Parameters:
        stepExecution - StepExecution instance to be saved.
      • saveStepExecutions

        void saveStepExecutions​(java.util.Collection<StepExecution> stepExecutions)
        Save the given collection of StepExecution as a batch. Preconditions: StepExecution Id must be null. Postconditions: StepExecution Id will be set to a unique Long.
        Parameters:
        stepExecutions - a collection of JobExecution instances to be saved.
      • updateStepExecution

        void updateStepExecution​(StepExecution stepExecution)
        Update the given StepExecution Preconditions: Id must not be null.
        Parameters:
        stepExecution - StepExecution instance to be updated.