Search in sources :

Example 1 with UnreachableException

use of org.jgroups.UnreachableException in project JGroups by belaban.

the class UnicastRequest method siteUnreachable.

public void siteUnreachable(String site) {
    if (!(target instanceof SiteAddress) || !((SiteAddress) target).getSite().equals(site) || isDone())
        return;
    completeExceptionally(new UnreachableException(target));
    corrDone();
}
Also used : SiteAddress(org.jgroups.protocols.relay.SiteAddress) UnreachableException(org.jgroups.UnreachableException)

Aggregations

UnreachableException (org.jgroups.UnreachableException)1 SiteAddress (org.jgroups.protocols.relay.SiteAddress)1