Interface Participant
A Participant can participate in a Coordination by
registering
itself with the
Coordination. After successfully registering itself, the Participant is
notified when the Coordination is terminated.
If a Coordination terminates normally
, then all
registered Participants are notified on their ended(Coordination)
method. If the Coordination terminates as a
failure
, then all registered
Participants are notified on their failed(Coordination)
method.
Participants are required to be thread safe as notification can be made on any thread.
A Participant can only be registered with a single active Coordination at a time. If a Participant is already registered with an active Coordination, attempts to register the Participation with another active Coordination will block until the Coordination the Participant is registered with terminates. Notice that in edge cases the notification to the Participant that the Coordination has terminated can happen before the registration method returns.
- "ThreadSafe"
-
Method Summary
Modifier and TypeMethodDescriptionvoid
ended
(Coordination coordination) Notification that a Coordination has terminatednormally
.void
failed
(Coordination coordination) Notification that a Coordination has terminated as afailure
.
-
Method Details
-
ended
Notification that a Coordination has terminatednormally
.This Participant should finalize any work associated with the specified Coordination.
- Parameters:
coordination
- The Coordination that has terminated normally.- Throws:
Exception
- If this Participant throws an exception, theCoordinator
service should log the exception. TheCoordination.end()
method which is notifying this Participant must continue notification of other registered Participants. When this is completed, theCoordination.end()
method must throw a CoordinationException of typeCoordinationException.PARTIALLY_ENDED
.
-
failed
Notification that a Coordination has terminated as afailure
.This Participant should discard any work associated with the specified Coordination.
- Parameters:
coordination
- The Coordination that has terminated as a failure.- Throws:
Exception
- If this Participant throws an exception, theCoordinator
service should log the exception. TheCoordination.fail(Throwable)
method which is notifying this Participant must continue notification of other registered Participants.
-