com.rabbitmq.client.Connection.getPort()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(121)

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

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);
}

相关文章