javax.batch.api.partition

Interface PartitionReducer

  • All Known Implementing Classes:
    AbstractPartitionReducer

    public interface PartitionReducer
    PartitionReducer provides unit of work demarcation across partitions. It is not a JTA transaction; no resources are enlisted. Rather, it provides transactional flow semantics to facilitate finalizing merge or compensation logic.
    • Method Detail

      • beginPartitionedStep

        void beginPartitionedStep()
                           throws Exception
        The beginPartitionedStep method receives control at the start of partition processing. It receives control before the PartitionMapper is invoked and before any partitions are started.
        Throws:
        Exception - is thrown if an error occurs.
      • beforePartitionedStepCompletion

        void beforePartitionedStepCompletion()
                                      throws Exception
        The beforePartitionedStepCompletion method receives control at the end of partitioned step processing. It receives control after all partitions have completed. It does not receive control if the PartitionReducer is rolling back.
        Throws:
        Exception - is thrown if an error occurs.
      • rollbackPartitionedStep

        void rollbackPartitionedStep()
                              throws Exception
        The rollbackPartitionedStep method receives control if the runtime is rolling back a partitioned step. Any partition threads still running are allowed to complete before this method is invoked. This method receives control if any of the following conditions are true:

        1. One or more partitions end with a Batch Status of STOPPED or FAILED.
        2. Any of the following partitioned step callbacks throw an exception:
          1. PartitionMapper
          2. PartitionReducer
          3. PartitionCollector
          4. PartitionAnalyzer
        3. A job with partitioned steps is restarted.
        Throws:
        Exception - is thrown if an error occurs.
      • afterPartitionedStepCompletion

        void afterPartitionedStepCompletion(PartitionReducer.PartitionStatus status)
                                     throws Exception
        The afterPartitionedStepCompletion method receives control at the end of a partition processing. It receives a status value that identifies the outcome of the partition processing. The status string value is either "COMMIT" or "ROLLBACK".
        Parameters:
        status - specifies the outcome of the partitioned step. Values are "COMMIT" or "ROLLBACK".
        Throws:
        Exception - is thrown if an error occurs.

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Version en cache

21/08/2025 19:06:18 Cette version de la page est en cache (à la date du 21/08/2025 19:06:18) afin d'accélérer le traitement.
Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.

Document créé le 11/06/2005, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/batch/api/partition/PartitionReducer.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, PartitionReducer (Java(TM) EE 7 Specification APIs)

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.