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