use of org.infinispan.commands.topology.CacheShutdownRequestCommand in project infinispan by infinispan.
the class LocalCacheStatus method cacheShutdown.
@Override
public void cacheShutdown(String name) {
ReplicableCommand command = new CacheShutdownRequestCommand(name);
CompletionStages.join(helper.executeOnCoordinator(transport, command, getGlobalTimeout()));
}
Aggregations