com.alipay.sofa.rpc.registry.zk.ZookeeperConfigObserver.notifyListeners()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(6.4k)|赞(0)|评价(0)|浏览(115)

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

ZookeeperConfigObserver.notifyListeners介绍

暂无

代码示例

代码示例来源:origin: alipay/sofa-rpc

/**
 * 接口配置修改子节点Data
 *
 * @param config     接口配置
 * @param configPath 配置Path
 * @param data       子节点Data
 */
public void updateConfig(AbstractInterfaceConfig config, String configPath, ChildData data) {
  if (data == null) {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive update data is null");
    }
  } else {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive update data: path=[" + data.getPath() + "]"
        + ", data=[" + StringSerializer.decode(data.getData()) + "]"
        + ", stat=[" + data.getStat() + "]");
    }
    notifyListeners(config, configPath, data, false);
  }
}

代码示例来源:origin: alipay/sofa-rpc

/**
 * 接口配置删除子节点Data
 *
 * @param config     接口配置
 * @param configPath 配置Path
 * @param data       子节点Data
 */
public void removeConfig(AbstractInterfaceConfig config, String configPath, ChildData data) {
  if (data == null) {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive remove data is null");
    }
  } else {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive remove data: path=[" + data.getPath() + "]"
        + ", data=[" + StringSerializer.decode(data.getData()) + "]"
        + ", stat=[" + data.getStat() + "]");
    }
    notifyListeners(config, configPath, data, true);
  }
}

代码示例来源:origin: alipay/sofa-rpc

/**
 * 接口配置修改子节点Data
 *
 * @param config     接口配置
 * @param configPath 配置Path
 * @param data       子节点Data
 */
public void updateConfig(AbstractInterfaceConfig config, String configPath, ChildData data) {
  if (data == null) {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive update data is null");
    }
  } else {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive update data: path=[" + data.getPath() + "]"
        + ", data=[" + StringSerializer.decode(data.getData()) + "]"
        + ", stat=[" + data.getStat() + "]");
    }
    notifyListeners(config, configPath, data, false);
  }
}

代码示例来源:origin: alipay/sofa-rpc

/**
 * 接口配置删除子节点Data
 *
 * @param config     接口配置
 * @param configPath 配置Path
 * @param data       子节点Data
 */
public void removeConfig(AbstractInterfaceConfig config, String configPath, ChildData data) {
  if (data == null) {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive remove data is null");
    }
  } else {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive remove data: path=[" + data.getPath() + "]"
        + ", data=[" + StringSerializer.decode(data.getData()) + "]"
        + ", stat=[" + data.getStat() + "]");
    }
    notifyListeners(config, configPath, data, true);
  }
}

代码示例来源:origin: alipay/sofa-rpc

/**
 * 接口配置新增子节点Data
 *
 * @param config     接口配置
 * @param configPath 配置Path
 * @param data       子节点Data
 */
public void addConfig(AbstractInterfaceConfig config, String configPath, ChildData data) {
  if (data == null) {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive add data is null");
    }
  } else {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive add data: path=[" + data.getPath() + "]"
        + ", data=[" + StringSerializer.decode(data.getData()) + "]"
        + ", stat=[" + data.getStat() + "]");
    }
    notifyListeners(config, configPath, data, false);
  }
}

代码示例来源:origin: alipay/sofa-rpc

/**
 * 接口配置新增子节点Data
 *
 * @param config     接口配置
 * @param configPath 配置Path
 * @param data       子节点Data
 */
public void addConfig(AbstractInterfaceConfig config, String configPath, ChildData data) {
  if (data == null) {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive add data is null");
    }
  } else {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive add data: path=[" + data.getPath() + "]"
        + ", data=[" + StringSerializer.decode(data.getData()) + "]"
        + ", stat=[" + data.getStat() + "]");
    }
    notifyListeners(config, configPath, data, false);
  }
}

代码示例来源:origin: com.alipay.sofa/sofa-rpc-all

/**
 * 接口配置修改子节点Data
 *
 * @param config     接口配置
 * @param configPath 配置Path
 * @param data       子节点Data
 */
public void updateConfig(AbstractInterfaceConfig config, String configPath, ChildData data) {
  if (data == null) {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive update data is null");
    }
  } else {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive update data: path=[" + data.getPath() + "]"
        + ", data=[" + StringSerializer.decode(data.getData()) + "]"
        + ", stat=[" + data.getStat() + "]");
    }
    notifyListeners(config, configPath, data, false);
  }
}

代码示例来源:origin: com.alipay.sofa/sofa-rpc-all

/**
 * 接口配置新增子节点Data
 *
 * @param config     接口配置
 * @param configPath 配置Path
 * @param data       子节点Data
 */
public void addConfig(AbstractInterfaceConfig config, String configPath, ChildData data) {
  if (data == null) {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive add data is null");
    }
  } else {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive add data: path=[" + data.getPath() + "]"
        + ", data=[" + StringSerializer.decode(data.getData()) + "]"
        + ", stat=[" + data.getStat() + "]");
    }
    notifyListeners(config, configPath, data, false);
  }
}

代码示例来源:origin: com.alipay.sofa/sofa-rpc-all

/**
 * 接口配置删除子节点Data
 *
 * @param config     接口配置
 * @param configPath 配置Path
 * @param data       子节点Data
 */
public void removeConfig(AbstractInterfaceConfig config, String configPath, ChildData data) {
  if (data == null) {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive remove data is null");
    }
  } else {
    if (LOGGER.isInfoEnabled(config.getAppName())) {
      LOGGER.infoWithApp(config.getAppName(), "Receive remove data: path=[" + data.getPath() + "]"
        + ", data=[" + StringSerializer.decode(data.getData()) + "]"
        + ", stat=[" + data.getStat() + "]");
    }
    notifyListeners(config, configPath, data, true);
  }
}

相关文章