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