io.vertx.core.VertxOptions.getClusterPort()方法的使用及代码示例

x33g5p2x  于2022-01-31 转载在 其他  
字(10.9k)|赞(0)|评价(0)|浏览(101)

本文整理了Java中io.vertx.core.VertxOptions.getClusterPort()方法的一些代码示例,展示了VertxOptions.getClusterPort()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。VertxOptions.getClusterPort()方法的具体详情如下:
包路径:io.vertx.core.VertxOptions
类名称:VertxOptions
方法名:getClusterPort

VertxOptions.getClusterPort介绍

[英]Get the port to be used for clustering
[中]获取用于群集的端口

代码示例

代码示例来源:origin: eclipse-vertx/vert.x

json.put("clusterPort", obj.getClusterPort());
if (obj.getClusterPublicHost() != null) {
 json.put("clusterPublicHost", obj.getClusterPublicHost());

代码示例来源:origin: eclipse-vertx/vert.x

clusterHost = options.getClusterHost();
if (options.getClusterPort() != VertxOptions.DEFAULT_CLUSTER_PORT) {
 clusterPort = options.getClusterPort();

代码示例来源:origin: eclipse-vertx/vert.x

@Test
public void testConfigureClusterHostPortFromProperties() throws Exception {
 int clusterPort = TestUtils.randomHighPortInt();
 System.setProperty(RunCommand.VERTX_OPTIONS_PROP_PREFIX + "clusterHost", "127.0.0.1");
 System.setProperty(RunCommand.VERTX_OPTIONS_PROP_PREFIX + "clusterPort", Integer.toString(clusterPort));
 MyLauncher launcher = new MyLauncher();
 String[] args = {"run", "java:" + TestVerticle.class.getCanonicalName(), "-cluster"};
 launcher.dispatch(args);
 assertWaitUntil(() -> TestVerticle.instanceCount.get() == 1);
 assertEquals("127.0.0.1", launcher.options.getClusterHost());
 assertEquals(clusterPort, launcher.options.getClusterPort());
 assertNull(launcher.options.getClusterPublicHost());
 assertEquals(-1, launcher.options.getClusterPublicPort());
}

代码示例来源:origin: eclipse-vertx/vert.x

@Test
public void testConfigureClusterHostPortFromCommandLine() throws Exception {
 int clusterPort = TestUtils.randomHighPortInt();
 MyLauncher launcher = new MyLauncher();
 String[] args = {"run", "java:" + TestVerticle.class.getCanonicalName(), "-cluster", "--cluster-host", "127.0.0.1", "--cluster-port", Integer.toString(clusterPort)};
 launcher.dispatch(args);
 assertWaitUntil(() -> TestVerticle.instanceCount.get() == 1);
 assertEquals("127.0.0.1", launcher.options.getClusterHost());
 assertEquals(clusterPort, launcher.options.getClusterPort());
 assertNull(launcher.options.getClusterPublicHost());
 assertEquals(-1, launcher.options.getClusterPublicPort());
}

代码示例来源:origin: eclipse-vertx/vert.x

@Test
public void testOverrideClusterHostPortFromProperties() throws Exception {
 int clusterPort = TestUtils.randomHighPortInt();
 int newClusterPort = TestUtils.randomHighPortInt();
 int newClusterPublicPort = TestUtils.randomHighPortInt();
 System.setProperty(RunCommand.VERTX_OPTIONS_PROP_PREFIX + "clusterHost", "127.0.0.2");
 System.setProperty(RunCommand.VERTX_OPTIONS_PROP_PREFIX + "clusterPort", Integer.toString(clusterPort));
 MyLauncher launcher = new MyLauncher();
 launcher.clusterHost = "127.0.0.1";
 launcher.clusterPort = newClusterPort;
 launcher.clusterPublicHost = "127.0.0.3";
 launcher.clusterPublicPort = newClusterPublicPort;
 String[] args = {"run", "java:" + TestVerticle.class.getCanonicalName(), "-cluster"};
 launcher.dispatch(args);
 assertWaitUntil(() -> TestVerticle.instanceCount.get() == 1);
 assertEquals("127.0.0.1", launcher.options.getClusterHost());
 assertEquals(newClusterPort, launcher.options.getClusterPort());
 assertEquals("127.0.0.3", launcher.options.getClusterPublicHost());
 assertEquals(newClusterPublicPort, launcher.options.getClusterPublicPort());
}

代码示例来源:origin: eclipse-vertx/vert.x

@Test
public void testOverrideClusterHostPortFromCommandLine() throws Exception {
 int clusterPort = TestUtils.randomHighPortInt();
 int clusterPublicPort = TestUtils.randomHighPortInt();
 int newClusterPort = TestUtils.randomHighPortInt();
 int newClusterPublicPort = TestUtils.randomHighPortInt();
 MyLauncher launcher = new MyLauncher();
 launcher.clusterHost = "127.0.0.1";
 launcher.clusterPort = newClusterPort;
 launcher.clusterPublicHost = "127.0.0.3";
 launcher.clusterPublicPort = newClusterPublicPort;
 String[] args = {
  "run", "java:" + TestVerticle.class.getCanonicalName(),
  "-cluster",
  "--cluster-host", "127.0.0.2", "--cluster-port", Integer.toString(clusterPort),
  "--cluster-public-host", "127.0.0.4", "--cluster-public-port", Integer.toString(clusterPublicPort)
 };
 launcher.dispatch(args);
 assertWaitUntil(() -> TestVerticle.instanceCount.get() == 1);
 assertEquals("127.0.0.1", launcher.options.getClusterHost());
 assertEquals(newClusterPort, launcher.options.getClusterPort());
 assertEquals("127.0.0.3", launcher.options.getClusterPublicHost());
 assertEquals(newClusterPublicPort, launcher.options.getClusterPublicPort());
}

代码示例来源:origin: eclipse-vertx/vert.x

VertxOptions options = new VertxOptions(new JsonObject());
assertEquals(0, options.getClusterPort());
assertEquals(-1, options.getClusterPublicPort());
assertEquals(20000, options.getClusterPingInterval());
  put("blockedThreadCheckIntervalUnit", blockedThreadCheckIntervalUnit)
);
assertEquals(clusterPort, options.getClusterPort());
assertEquals(clusterPublicPort, options.getClusterPublicPort());
assertEquals(clusterPublicHost, options.getClusterPublicHost());

代码示例来源:origin: eclipse-vertx/vert.x

assertEquals(clusterPort, options.getClusterPort());
assertEquals(clusterPublicPort, options.getClusterPublicPort());
assertEquals(clusterPingInterval, options.getClusterPingInterval());

代码示例来源:origin: io.vertx/vertx-core

json.put("clusterPort", obj.getClusterPort());
if (obj.getClusterPublicHost() != null) {
 json.put("clusterPublicHost", obj.getClusterPublicHost());

代码示例来源:origin: io.vertx/vertx-core

clusterHost = options.getClusterHost();
if (options.getClusterPort() != VertxOptions.DEFAULT_CLUSTER_PORT) {
 clusterPort = options.getClusterPort();

代码示例来源:origin: io.vertx/vertx-core

@Test
public void testConfigureClusterHostPortFromProperties() throws Exception {
 int clusterPort = TestUtils.randomHighPortInt();
 System.setProperty(RunCommand.VERTX_OPTIONS_PROP_PREFIX + "clusterHost", "127.0.0.1");
 System.setProperty(RunCommand.VERTX_OPTIONS_PROP_PREFIX + "clusterPort", Integer.toString(clusterPort));
 MyLauncher launcher = new MyLauncher();
 String[] args = {"run", "java:" + TestVerticle.class.getCanonicalName(), "-cluster"};
 launcher.dispatch(args);
 assertWaitUntil(() -> TestVerticle.instanceCount.get() == 1);
 assertEquals("127.0.0.1", launcher.options.getClusterHost());
 assertEquals(clusterPort, launcher.options.getClusterPort());
 assertNull(launcher.options.getClusterPublicHost());
 assertEquals(-1, launcher.options.getClusterPublicPort());
}

代码示例来源:origin: io.vertx/vertx-core

@Test
public void testConfigureClusterHostPortFromCommandLine() throws Exception {
 int clusterPort = TestUtils.randomHighPortInt();
 MyLauncher launcher = new MyLauncher();
 String[] args = {"run", "java:" + TestVerticle.class.getCanonicalName(), "-cluster", "--cluster-host", "127.0.0.1", "--cluster-port", Integer.toString(clusterPort)};
 launcher.dispatch(args);
 assertWaitUntil(() -> TestVerticle.instanceCount.get() == 1);
 assertEquals("127.0.0.1", launcher.options.getClusterHost());
 assertEquals(clusterPort, launcher.options.getClusterPort());
 assertNull(launcher.options.getClusterPublicHost());
 assertEquals(-1, launcher.options.getClusterPublicPort());
}

代码示例来源:origin: io.vertx/vertx-core

@Test
public void testOverrideClusterHostPortFromProperties() throws Exception {
 int clusterPort = TestUtils.randomHighPortInt();
 int newClusterPort = TestUtils.randomHighPortInt();
 int newClusterPublicPort = TestUtils.randomHighPortInt();
 System.setProperty(RunCommand.VERTX_OPTIONS_PROP_PREFIX + "clusterHost", "127.0.0.2");
 System.setProperty(RunCommand.VERTX_OPTIONS_PROP_PREFIX + "clusterPort", Integer.toString(clusterPort));
 MyLauncher launcher = new MyLauncher();
 launcher.clusterHost = "127.0.0.1";
 launcher.clusterPort = newClusterPort;
 launcher.clusterPublicHost = "127.0.0.3";
 launcher.clusterPublicPort = newClusterPublicPort;
 String[] args = {"run", "java:" + TestVerticle.class.getCanonicalName(), "-cluster"};
 launcher.dispatch(args);
 assertWaitUntil(() -> TestVerticle.instanceCount.get() == 1);
 assertEquals("127.0.0.1", launcher.options.getClusterHost());
 assertEquals(newClusterPort, launcher.options.getClusterPort());
 assertEquals("127.0.0.3", launcher.options.getClusterPublicHost());
 assertEquals(newClusterPublicPort, launcher.options.getClusterPublicPort());
}

代码示例来源:origin: io.vertx/vertx-core

@Test
public void testOverrideClusterHostPortFromCommandLine() throws Exception {
 int clusterPort = TestUtils.randomHighPortInt();
 int clusterPublicPort = TestUtils.randomHighPortInt();
 int newClusterPort = TestUtils.randomHighPortInt();
 int newClusterPublicPort = TestUtils.randomHighPortInt();
 MyLauncher launcher = new MyLauncher();
 launcher.clusterHost = "127.0.0.1";
 launcher.clusterPort = newClusterPort;
 launcher.clusterPublicHost = "127.0.0.3";
 launcher.clusterPublicPort = newClusterPublicPort;
 String[] args = {
  "run", "java:" + TestVerticle.class.getCanonicalName(),
  "-cluster",
  "--cluster-host", "127.0.0.2", "--cluster-port", Integer.toString(clusterPort),
  "--cluster-public-host", "127.0.0.4", "--cluster-public-port", Integer.toString(clusterPublicPort)
 };
 launcher.dispatch(args);
 assertWaitUntil(() -> TestVerticle.instanceCount.get() == 1);
 assertEquals("127.0.0.1", launcher.options.getClusterHost());
 assertEquals(newClusterPort, launcher.options.getClusterPort());
 assertEquals("127.0.0.3", launcher.options.getClusterPublicHost());
 assertEquals(newClusterPublicPort, launcher.options.getClusterPublicPort());
}

代码示例来源:origin: eclipse-vertx/vert.x

assertEquals(options, options.setClustered(true));
assertTrue(options.isClustered());
assertEquals(0, options.getClusterPort());
assertEquals(options, options.setClusterPort(1234));
assertEquals(1234, options.getClusterPort());
try {
 options.setClusterPort(-1);

代码示例来源:origin: io.vertx/vertx-core

VertxOptions options = new VertxOptions(new JsonObject());
assertEquals(0, options.getClusterPort());
assertEquals(-1, options.getClusterPublicPort());
assertEquals(20000, options.getClusterPingInterval());
  put("blockedThreadCheckIntervalUnit", blockedThreadCheckIntervalUnit)
);
assertEquals(clusterPort, options.getClusterPort());
assertEquals(clusterPublicPort, options.getClusterPublicPort());
assertEquals(clusterPublicHost, options.getClusterPublicHost());

代码示例来源:origin: io.vertx/vertx-core

assertEquals(clusterPort, options.getClusterPort());
assertEquals(clusterPublicPort, options.getClusterPublicPort());
assertEquals(clusterPingInterval, options.getClusterPingInterval());

代码示例来源:origin: io.vertx/vertx-core

assertEquals(options, options.setClustered(true));
assertTrue(options.isClustered());
assertEquals(0, options.getClusterPort());
assertEquals(options, options.setClusterPort(1234));
assertEquals(1234, options.getClusterPort());
try {
 options.setClusterPort(-1);

相关文章

VertxOptions类方法