-
public interface MessageEndpoint
This defines a contract for a message endpoint. This is implemented by an application server.- Version:
- 1.0
- Author:
- Ram Jeyaraman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
afterDelivery()
This is called by a resource adapter after a message is delivered.void
beforeDelivery(Method method)
This is called by a resource adapter before a message is delivered.void
release()
This method may be called by the resource adapter to indicate that it no longer needs a proxy endpoint instance.
-
-
-
Method Detail
-
beforeDelivery
void beforeDelivery(Method method) throws NoSuchMethodException, ResourceException
This is called by a resource adapter before a message is delivered.- Parameters:
method
- description of a target method. This information about the intended target method allows an application server to decide whether to start a transaction during this method call, depending on the transaction preferences of the target method. The processing (by the application server) of the actual message delivery method call on the endpoint must be independent of the class loader associated with this descriptive method object.- Throws:
NoSuchMethodException
- indicates that the specified method does not exist on the target endpoint.ResourceException
- generic exception.ApplicationServerInternalException
- indicates an error condition in the application server.IllegalStateException
- indicates that the endpoint is in an illegal state for the method invocation. For example, this occurs whenbeforeDelivery
andafterDelivery
method calls are not paired.UnavailableException
- indicates that the endpoint is not available.
-
afterDelivery
void afterDelivery() throws ResourceException
This is called by a resource adapter after a message is delivered.- Throws:
ResourceException
- generic exception.ApplicationServerInternalException
- indicates an error condition in the application server.IllegalStateException
- indicates that the endpoint is in an illegal state for the method invocation. For example, this occurs when beforeDelivery and afterDelivery method calls are not paired.UnavailableException
- indicates that the endpoint is not available.
-
release
void release()
This method may be called by the resource adapter to indicate that it no longer needs a proxy endpoint instance. This hint may be used by the application server for endpoint pooling decisions.
-
-
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
22/08/2025 12:02:34 Cette version de la page est en cache (à la date du 22/08/2025 12:02:34) 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 19/04/2008, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/resource/spi/endpoint/MessageEndpoint.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
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.