* synchronization
*/
public RemoteClusterHandler<K,E> bootstrapRemoteCluster(ClusterViewByServerImpl<K,E> localCluster)
throws IOException
{
RemoteClusterConfig rconfig = _serviceConfig.remoteCluster;
IpAndPort[] remoteDefs = (rconfig == null) ? null : rconfig.nodes;
Set<IpAndPort> remoteIps = (remoteDefs == null) ? null : new LinkedHashSet<IpAndPort>(Arrays.asList(remoteDefs));
if (remoteIps == null || remoteIps.size() == 0) {
LOG.info("No Remote Cluster definitions found -- will skip RC bootstrapping");