use of org.infinispan.commands.topology.RebalanceStartCommand in project infinispan by infinispan.
the class ClusterTopologyManagerImpl method broadcastRebalanceStart.
void broadcastRebalanceStart(String cacheName, CacheTopology cacheTopology) {
ReplicableCommand command = new RebalanceStartCommand(cacheName, transport.getAddress(), cacheTopology, viewId);
helper.executeOnClusterAsync(transport, command);
}
Aggregations