Package org.jgroups.protocols.relay
Interface RouteStatusListener
-
- All Known Implementing Classes:
DefaultRouteStatusListener
public interface RouteStatusListener
Gets notified when a site comes up or goes down- Since:
- 3.4
- Author:
- Bela Ban
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
memberUnreachable(Address member)
Sent back to the original sender when the unicast destination is not part of the local cluster (site)void
sitesDown(java.lang.String... sites)
The sites went downdefault void
sitesUnreachable(java.lang.String... sites)
The sites are unreachable (no route to them)void
sitesUp(java.lang.String... sites)
The sites just came up
-
-
-
Method Detail
-
sitesUp
void sitesUp(java.lang.String... sites)
The sites just came up
-
sitesDown
void sitesDown(java.lang.String... sites)
The sites went down
-
sitesUnreachable
default void sitesUnreachable(java.lang.String... sites)
The sites are unreachable (no route to them)
-
memberUnreachable
default void memberUnreachable(Address member)
Sent back to the original sender when the unicast destination is not part of the local cluster (site)
-
-