this.asyncExecutorFactory = asyncExecutorFactory;
}
public void setHotRodClientPropertiesFile(String hotRodClientPropertiesFile) {
FileLookup fileLookup = FileLookupFactory.newInstance();
InputStream inputStream = fileLookup.lookupFile(hotRodClientPropertiesFile, getClassLoader());
try {
hotRodClientProperties.load(inputStream);
} catch (IOException e) {
log.error("Issues while loading properties from file " + hotRodClientPropertiesFile, e);
throw new CacheException(e);