-
- All Superinterfaces:
- EventListener
- All Known Implementing Classes:
- WorkAdapter
public interface WorkListener extends EventListener
This models aWorkListener
instance which would be notified by theWorkManager
when the variousWork
processing events (work accepted, work rejected, work started, work completed) occur. TheWorkListener
instance must not make any thread assumptions and must be thread-safe ie., a notification could occur from any arbitrary thread. Further, it must not make any assumptions on the ordering of notifications.- Version:
- 1.0
- Author:
- Ram Jeyaraman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
workAccepted(WorkEvent e)
Invoked when aWork
instance has been accepted.void
workCompleted(WorkEvent e)
Invoked when aWork
instance has completed execution.void
workRejected(WorkEvent e)
Invoked when aWork
instance has been rejected.void
workStarted(WorkEvent e)
Invoked when aWork
instance has started execution.
-
-
-
Method Detail
-
workAccepted
void workAccepted(WorkEvent e)
Invoked when aWork
instance has been accepted.- Parameters:
e
- AWorkEvent
object that provides more information about the accepted Work.
-
workRejected
void workRejected(WorkEvent e)
Invoked when aWork
instance has been rejected.- Parameters:
e
- AWorkEvent
object that provides more information about the rejected Work.
-
workStarted
void workStarted(WorkEvent e)
Invoked when aWork
instance has started execution. This only means that a thread has been allocated.- Parameters:
e
- AWorkEvent
object that provides more information about the rejected Work.
-
workCompleted
void workCompleted(WorkEvent e)
Invoked when aWork
instance has completed execution.- Parameters:
e
- AWorkEvent
object that provides more information about the completed Work.
-
-
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 15:09:16 Cette version de la page est en cache (à la date du 21/08/2025 15:09:16) 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/work/WorkListener.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.