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

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

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

Connection.getClientProperties介绍

暂无

代码示例

代码示例来源:origin: com.github.combinedmq/combinedmq

@Override
public Map<String, Object> getClientProperties() {
  return connection.getClientProperties();
}

代码示例来源: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);
}

代码示例来源:origin: spring-projects/spring-amqp

@Test
public void testConnectionName() {
  Connection connection = this.connectionFactory.createConnection();
  com.rabbitmq.client.Connection rabbitConnection = TestUtils.getPropertyValue(connection, "target.delegate",
      com.rabbitmq.client.Connection.class);
  assertEquals(CF_INTEGRATION_CONNECTION_NAME, rabbitConnection.getClientProperties().get("connection_name"));
  this.connectionFactory.destroy();
}

相关文章