javax.transaction

Interface Status


  • public interface Status
    The Status interface defines static variables used for transaction status codes.
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static int STATUS_ACTIVE
      A transaction is associated with the target object and it is in the active state.
      static int STATUS_COMMITTED
      A transaction is associated with the target object and it has been committed.
      static int STATUS_COMMITTING
      A transaction is associated with the target object and it is in the process of committing.
      static int STATUS_MARKED_ROLLBACK
      A transaction is associated with the target object and it has been marked for rollback, perhaps as a result of a setRollbackOnly operation.
      static int STATUS_NO_TRANSACTION
      No transaction is currently associated with the target object.
      static int STATUS_PREPARED
      A transaction is associated with the target object and it has been prepared.
      static int STATUS_PREPARING
      A transaction is associated with the target object and it is in the process of preparing.
      static int STATUS_ROLLEDBACK
      A transaction is associated with the target object and the outcome has been determined to be rollback.
      static int STATUS_ROLLING_BACK
      A transaction is associated with the target object and it is in the process of rolling back.
      static int STATUS_UNKNOWN
      A transaction is associated with the target object but its current status cannot be determined.

      Erste Seite von API Java Inhaltsverzeichnis Haut

    • Field Detail

      • STATUS_ACTIVE

        static final int STATUS_ACTIVE
        A transaction is associated with the target object and it is in the active state. An implementation returns this status after a transaction has been started and prior to a Coordinator issuing any prepares, unless the transaction has been marked for rollback.
        See Also:
        Constant Field Values
      • STATUS_MARKED_ROLLBACK

        static final int STATUS_MARKED_ROLLBACK
        A transaction is associated with the target object and it has been marked for rollback, perhaps as a result of a setRollbackOnly operation.
        See Also:
        Constant Field Values
      • STATUS_PREPARED

        static final int STATUS_PREPARED
        A transaction is associated with the target object and it has been prepared. That is, all subordinates have agreed to commit. The target object may be waiting for instructions from a superior as to how to proceed.
        See Also:
        Constant Field Values
      • STATUS_COMMITTED

        static final int STATUS_COMMITTED
        A transaction is associated with the target object and it has been committed. It is likely that heuristics exist; otherwise, the transaction would have been destroyed and NoTransaction returned.
        See Also:
        Constant Field Values
      • STATUS_ROLLEDBACK

        static final int STATUS_ROLLEDBACK
        A transaction is associated with the target object and the outcome has been determined to be rollback. It is likely that heuristics exist; otherwise, the transaction would have been destroyed and NoTransaction returned.
        See Also:
        Constant Field Values
      • STATUS_UNKNOWN

        static final int STATUS_UNKNOWN
        A transaction is associated with the target object but its current status cannot be determined. This is a transient condition and a subsequent invocation will ultimately return a different status.
        See Also:
        Constant Field Values
      • STATUS_NO_TRANSACTION

        static final int STATUS_NO_TRANSACTION
        No transaction is currently associated with the target object. This will occur after a transaction has completed.
        See Also:
        Constant Field Values
      • STATUS_PREPARING

        static final int STATUS_PREPARING
        A transaction is associated with the target object and it is in the process of preparing. An implementation returns this status if it has started preparing, but has not yet completed the process. The likely reason for this is that the implementation is probably waiting for responses to prepare from one or more Resources.
        See Also:
        Constant Field Values
      • STATUS_COMMITTING

        static final int STATUS_COMMITTING
        A transaction is associated with the target object and it is in the process of committing. An implementation returns this status if it has decided to commit but has not yet completed the committing process. This occurs because the implementation is probably waiting for responses from one or more Resources.
        See Also:
        Constant Field Values
      • STATUS_ROLLING_BACK

        static final int STATUS_ROLLING_BACK
        A transaction is associated with the target object and it is in the process of rolling back. An implementation returns this status if it has decided to rollback but has not yet completed the process. The implementation is probably waiting for responses from one or more Resources.
        See Also:
        Constant Field Values

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 18/08/2025
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-javaee-rf-javax/transaction/Status.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com, Status (Java(TM) EE 7 Specification APIs)

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor dieser Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.