use of org.wildfly.clustering.infinispan.client.manager.RemoteCacheManager in project wildfly by wildfly.
the class RemoteCacheContainerServiceConfigurator method get.
@Override
public RemoteCacheManager get() {
Configuration configuration = this.configuration.get();
RemoteCacheManager container = new RemoteCacheManager(this.name, configuration, this.registrar);
container.start();
InfinispanLogger.ROOT_LOGGER.remoteCacheContainerStarted(this.name);
return container;
}
Aggregations