本文整理了Java中com.hazelcast.config.Config.setProperties()
方法的一些代码示例,展示了Config.setProperties()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.setProperties()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:setProperties
[英]Sets the properties for this config instance. These properties are specific to this config and this hazelcast instance.
[中]设置此配置实例的属性。这些属性特定于此配置和此hazelcast实例。
代码示例来源:origin: jooby-project/jooby
@Override
public void configure(final Env env, final Config conf, final Binder binder) {
com.hazelcast.config.Config config = new com.hazelcast.config.Config();
config.setProperties(toProperties(conf.getConfig("hazelcast")));
if (configurer != null) {
configurer.accept(config, conf);
}
HazelcastInstance hcast = Hazelcast.newHazelcastInstance(config);
binder.bind(com.hazelcast.config.Config.class).toInstance(config);
binder.bind(HazelcastInstance.class).toInstance(hcast);
env.onStop(hcast::shutdown);
}
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Config setProperties(Properties properties) {
return staticConfig.setProperties(properties);
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Config setProperties(Properties properties) {
return staticConfig.setProperties(properties);
}
代码示例来源:origin: org.jooby/jooby-hazelcast
@Override
public void configure(final Env env, final Config conf, final Binder binder) {
com.hazelcast.config.Config config = new com.hazelcast.config.Config();
config.setProperties(toProperties(conf.getConfig("hazelcast")));
if (configurer != null) {
configurer.accept(config, conf);
}
HazelcastInstance hcast = Hazelcast.newHazelcastInstance(config);
binder.bind(com.hazelcast.config.Config.class).toInstance(config);
binder.bind(HazelcastInstance.class).toInstance(hcast);
env.onStop(hcast::shutdown);
}
内容来源于网络,如有侵权,请联系作者删除!