本文整理汇总了Java中io.vertx.core.VertxOptions.setClustered方法的典型用法代码示例。如果您正苦于以下问题:Java VertxOptions.setClustered方法的具体用法?Java VertxOptions.setClustered怎么用?Java VertxOptions.setClustered使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类io.vertx.core.VertxOptions
的用法示例。
在下文中一共展示了VertxOptions.setClustered方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testVertxUtilsInitWithOptions
import io.vertx.core.VertxOptions; //导入方法依赖的package包/类
@Test
public void testVertxUtilsInitWithOptions() {
VertxOptions oOptions = new VertxOptions();
oOptions.setClustered(false);
Vertx vertx = VertxUtils.init(oOptions);
Assert.assertNotEquals(null, vertx);
vertx.close();
}
示例2: main
import io.vertx.core.VertxOptions; //导入方法依赖的package包/类
public static void main(String[] args) {
DeploymentOptions options = new DeploymentOptions().setInstances(1).
setConfig(new JsonObject().put("local", true).put("host", "0.0.0.0").put("port", 8181));
VertxOptions vOpts = new VertxOptions();
vOpts.setClustered(true);
Vertx.clusteredVertx(vOpts, cluster -> {
if (cluster.succeeded()) {
final Vertx result = cluster.result();
result.deployVerticle(VxmsGateway.class.getName(), options, handle -> {
});
}
});
}
示例3: run
import io.vertx.core.VertxOptions; //导入方法依赖的package包/类
public static void run(DeploymentOptions options, Class clazz) {
VertxOptions vOpts = new VertxOptions();
vOpts.setClustered(true);
Vertx.clusteredVertx(vOpts, cluster -> {
if (cluster.succeeded()) {
final Vertx result = cluster.result();
result.deployVerticle(clazz.getName(), options, handle -> {
});
}
});
}
示例4: vertx
import io.vertx.core.VertxOptions; //导入方法依赖的package包/类
/**
* Vertx.
*
* @return the future vertx
*/
protected Future<Vertx> vertx() {
VertxOptions options = new VertxOptions();
options.setClustered(true);
options.setClusterManager(clusterManager());
return VertxBuilder.create().options(options).build().compose(vertx -> {
vertx.deployVerticle(this);
}, Future.succeededFuture());
}
示例5: initVertx
import io.vertx.core.VertxOptions; //导入方法依赖的package包/类
public void initVertx(MeshOptions options, boolean isClustered) {
VertxOptions vertxOptions = new VertxOptions();
vertxOptions.setClustered(options.getClusterOptions().isEnabled());
vertxOptions.setWorkerPoolSize(options.getVertxOptions().getWorkerPoolSize());
vertxOptions.setEventLoopPoolSize(options.getVertxOptions().getEventPoolSize());
if (vertxOptions.isClustered()) {
log.info("Creating clustered Vert.x instance");
mesh.setVertx(createClusteredVertx(options, vertxOptions, (HazelcastInstance) db.getHazelcast()));
} else {
log.info("Creating non-clustered Vert.x instance");
mesh.setVertx(Vertx.vertx(vertxOptions));
}
}