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();
}
Aggregations