- java.lang.Object
-
- javax.resource.spi.work.ExecutionContext
-
- Direct Known Subclasses:
- TransactionContext
public class ExecutionContext extends Object
This class models an execution context (transaction, security, etc) with which theWork
instance must be executed. This class is provided as a convenience for easily creatingExecutionContext
instances by extending this class and overriding only those methods of interest.Some reasons why it is better for
ExecutionContext
to be a class rather than an interface:- There is no need for a resource adapter to implement this class. It only needs to implement the context information like transaction, etc.
- The resource adapter code does not have to change when the
ExecutionContext
class evolves. For example, more context types could be added to theExecutionContext
class (in the future) without forcing resource adapter implementations to change.
TransactionContext
interface instead of this class. See Chapter.11 Generic Work Context in the Connectors 1.6 specification for more details.- Version:
- 1.0
- Author:
- Ram Jeyaraman
-
-
Constructor Summary
Constructors Constructor and Description ExecutionContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description long
getTransactionTimeout()
Get the transaction timeout value for a imported transaction.Xid
getXid()
void
setTransactionTimeout(long timeout)
Set the transaction timeout value for a imported transaction.void
setXid(Xid xid)
set a transaction context.
-
-
-
Method Detail
-
setXid
public void setXid(Xid xid)
set a transaction context.- Parameters:
xid
- transaction context.
-
getXid
public Xid getXid()
- Returns:
- an Xid object carrying a transaction context, if any.
-
setTransactionTimeout
public void setTransactionTimeout(long timeout) throws NotSupportedException
Set the transaction timeout value for a imported transaction.- Parameters:
timeout
- transaction timeout value in seconds. Only positive non-zero values are accepted. Other values are illegal and are rejected with aNotSupportedException
.- Throws:
NotSupportedException
- thrown to indicate an illegal timeout value.
-
getTransactionTimeout
public long getTransactionTimeout()
Get the transaction timeout value for a imported transaction.- Returns:
- the specified transaction timeout value in seconds. When no
timeout value or an illegal timeout value had been specified, a value of
-1 (
WorkManager.UNKNOWN
) is returned; the timeout processing of such a transaction depends on the application server implementation.
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 18/08/2025 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-javaee-rf-javax/resource/spi/work/ExecutionContext.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur van deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.