本文整理了Java中com.rabbitmq.client.Connection.getPort()
方法的一些代码示例,展示了Connection.getPort()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Connection.getPort()
方法的具体详情如下:
包路径:com.rabbitmq.client.Connection
类名称:Connection
方法名:getPort
暂无
代码示例来源:origin: org.springframework.amqp/spring-rabbit
@Override
public int getPort() {
return this.delegate.getPort();
}
代码示例来源:origin: spring-projects/spring-amqp
@Override
public int getPort() {
return this.delegate.getPort();
}
代码示例来源:origin: com.github.combinedmq/combinedmq
@Override
public int getPort() {
return connection.getPort();
}
代码示例来源:origin: awin/rabbiteasy
/**
* Gets the port of the used broker.
*
* @return the port
*/
public int getPort() {
return channel.getConnection().getPort();
}
代码示例来源:origin: jhalterman/lyra
@Override
public Connection call() throws IOException, TimeoutException {
log.info("{} connection {} to {}", recovery ? "Recovering" : "Creating", connectionName,
options.getAddresses());
ConnectionFactory cxnFactory = options.getConnectionFactory();
Connection connection =
cxnFactory.newConnection(consumerThreadPool, options.getAddresses(), connectionName);
final String amqpAddress =
String.format("%s://%s:%s/%s", cxnFactory.isSSL() ? "amqps" : "amqp",
connection.getAddress().getHostAddress(), connection.getPort(),
"/".equals(cxnFactory.getVirtualHost()) ? "" : cxnFactory.getVirtualHost());
log.info("{} connection {} to {}", recovery ? "Recovered" : "Created", connectionName,
amqpAddress);
return connection;
}
}, recurringPolicy, recurringStats, recurringExceptions, true, false);
代码示例来源:origin: net.jodah/lyra
@Override
public Connection call() throws IOException, TimeoutException {
log.info("{} connection {} to {}", recovery ? "Recovering" : "Creating", connectionName,
options.getAddresses());
ConnectionFactory cxnFactory = options.getConnectionFactory();
Connection connection =
cxnFactory.newConnection(consumerThreadPool, options.getAddresses(), connectionName);
final String amqpAddress =
String.format("%s://%s:%s/%s", cxnFactory.isSSL() ? "amqps" : "amqp",
connection.getAddress().getHostAddress(), connection.getPort(),
"/".equals(cxnFactory.getVirtualHost()) ? "" : cxnFactory.getVirtualHost());
log.info("{} connection {} to {}", recovery ? "Recovered" : "Created", connectionName,
amqpAddress);
return connection;
}
}, recurringPolicy, recurringStats, recurringExceptions, true, false);
代码示例来源:origin: yanghua/banyan
private void open() {
if (this.isOpen())
return;
try {
this.channel = this.connection.createChannel();
context.setChannel(this.channel);
} catch (IOException e) {
logger.error("create channel error, connection host : " + this.connection.getAddress().getHostAddress()
+ " connection port : " + this.connection.getPort(), e);
throw new RuntimeException(e);
}
carryEventBus = new EventBus("carryEventBus");
context.setCarryEventBus(carryEventBus);
context.setConfigManager(this.configManager);
context.setConnection(this.connection);
this.isOpen.compareAndSet(false, true);
this.componentEventBus.post(new ClientInitedEvent());
}
代码示例来源:origin: com.springsource.insight.plugins/insight-plugin-rabbitmq-client
protected void applyConnectionData(Operation op, Connection conn) {
InetAddress address = conn.getAddress();
String host = address.getHostAddress();
int port = conn.getPort();
final String connectionUrl;
if (conn instanceof AMQConnection) {
connectionUrl = conn.toString();
} else {
connectionUrl = "amqp://" + host + ":" + port;
}
op.put("host", host);
op.put("port", port);
op.put("connectionUrl", connectionUrl);
//try to extract server version
String serverVersion = getVersion(conn.getServerProperties());
op.putAnyNonEmpty("serverVersion", serverVersion);
//try to extract client version
String clientVersion = getVersion(conn.getClientProperties());
op.putAnyNonEmpty("clientVersion", clientVersion);
}
内容来源于网络,如有侵权,请联系作者删除!