本文整理汇总了Java中com.hazelcast.config.Config.setConfigurationFile方法的典型用法代码示例。如果您正苦于以下问题:Java Config.setConfigurationFile方法的具体用法?Java Config.setConfigurationFile怎么用?Java Config.setConfigurationFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.hazelcast.config.Config
的用法示例。
在下文中一共展示了Config.setConfigurationFile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: SiddhiManager
import com.hazelcast.config.Config; //导入方法依赖的package包/类
public SiddhiManager(SiddhiConfiguration siddhiConfiguration) {
if (siddhiConfiguration.isDistributedProcessing()) {
HazelcastInstance hazelcastInstance = Hazelcast.getHazelcastInstanceByName(siddhiConfiguration.getInstanceIdentifier());
if (hazelcastInstance == null) {
this.siddhiContext = new SiddhiContext(siddhiConfiguration.getQueryPlanIdentifier(), SiddhiContext.ProcessingState.ENABLE_INTERNAL);
Config hazelcastConf = new Config();
//hazelcastConf.setProperty("hazelcast.logging.type", "log4j");
hazelcastConf.setConfigurationFile(new File("/opt/rb/etc/rb-bi/siddhi-hazelcast.xml"));
//hazelcastConf.getGroupConfig().setName(siddhiConfiguration.getQueryPlanIdentifier());
//hazelcastConf.setInstanceName(siddhiConfiguration.getInstanceIdentifier());
hazelcastInstance = Hazelcast.newHazelcastInstance(hazelcastConf);
} else {
this.siddhiContext = new SiddhiContext(siddhiConfiguration.getQueryPlanIdentifier(), SiddhiContext.ProcessingState.ENABLE_EXTERNAL);
}
siddhiContext.setHazelcastInstance(hazelcastInstance);
siddhiContext.setGlobalIndexGenerator(new GlobalIndexGenerator(siddhiContext));
} else {
this.siddhiContext = new SiddhiContext(siddhiConfiguration.getQueryPlanIdentifier(), SiddhiContext.ProcessingState.DISABLED);
}
this.siddhiContext.setEventBatchSize(siddhiConfiguration.getEventBatchSize());
this.siddhiContext.setAsyncProcessing(siddhiConfiguration.isAsyncProcessing());
this.siddhiContext.setSiddhiExtensions(siddhiConfiguration.getSiddhiExtensions());
this.siddhiContext.setThreadBarrier(new ThreadBarrier());
this.siddhiContext.setThreadPoolExecutor(new ThreadPoolExecutor(siddhiConfiguration.getThreadExecutorCorePoolSize(),
siddhiConfiguration.getThreadExecutorMaxPoolSize(),
50,
TimeUnit.MICROSECONDS,
new LinkedBlockingQueue<Runnable>(),
new SiddhiThreadFactory("Executor")));
this.siddhiContext.setScheduledExecutorService(Executors.newScheduledThreadPool(siddhiConfiguration.getThreadSchedulerCorePoolSize(), new SiddhiThreadFactory("Scheduler")));
this.siddhiContext.setSnapshotService(new SnapshotService(siddhiContext));
this.siddhiContext.setPersistenceService(new PersistenceService(siddhiContext));
this.siddhiContext.setEventMonitorService(new EventMonitorService(siddhiContext));
}
示例2: getConfig
import com.hazelcast.config.Config; //导入方法依赖的package包/类
private Config getConfig(Resource configLocation) throws IOException {
URL configUrl = configLocation.getURL();
Config config = new XmlConfigBuilder(configUrl).build();
if (ResourceUtils.isFileURL(configUrl)) {
config.setConfigurationFile(configLocation.getFile());
}
else {
config.setConfigurationUrl(configUrl);
}
return config;
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:12,代码来源:HazelcastInstanceFactory.java