org.jboss.cache.Node.getChildren()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(246)

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

Node.getChildren介绍

[英]Returns an immutable set of children nodes.
[中]返回一组不可变的子节点。

代码示例

代码示例来源:origin: Verigreen/verigreen

  1. private void populateValues(Node<String, Object> cache, ArrayList<V> list) {
  2. Set<Node<String, Object>> children = cache.getChildren();
  3. for (Node<String, Object> node : children) {
  4. Iterator<String> iterator = node.getKeys().iterator();
  5. if (iterator.hasNext()) {
  6. String key = iterator.next();
  7. V value = RuntimeUtils.<V> cast(node.get(key));
  8. list.add(getClonedValue(value));
  9. }
  10. }
  11. }

代码示例来源:origin: org.mobicents.servlet.sip.containers/sip-servlets-jboss5-ha-server-cache

  1. public Map<String, String> getSipApplicationSessionKeys() {
  2. Map<String, String> result = new HashMap<String, String>();
  3. Fqn<String> sipappFqn = getSipappFqn();
  4. Node<Object, Object> bbRoot = jBossCacheService.getCache().getRoot()
  5. .getChild(jBossCacheService.BUDDY_BACKUP_FQN);
  6. if (bbRoot != null) {
  7. Set<Node<Object, Object>> owners = bbRoot.getChildren();
  8. if (owners != null) {
  9. for (Node<Object, Object> owner : owners) {
  10. @SuppressWarnings("unchecked")
  11. Node sipRoot = owner.getChild(sipappFqn);
  12. if (sipRoot != null) {
  13. @SuppressWarnings("unchecked")
  14. Set<String> ids = sipRoot.getChildrenNames();
  15. storeSipApplicationSessionOwners(ids, (String) owner.getFqn()
  16. .getLastElement(), result);
  17. }
  18. }
  19. }
  20. }
  21. storeSipApplicationSessionOwners(jBossCacheService.getChildrenNames(sipappFqn), null,
  22. result);
  23. return result;
  24. }

代码示例来源:origin: org.mobicents.servlet.sip.containers/sip-servlets-jboss5-ha-server-cache

  1. public Map<String, String> getSipSessionKeys() {
  2. Map<String, String> result = new HashMap<String, String>();
  3. Fqn<String> sipappFqn = getSipappFqn();
  4. Node<Object, Object> bbRoot = jBossCacheService.getCache().getRoot()
  5. .getChild(jBossCacheService.BUDDY_BACKUP_FQN);
  6. if (bbRoot != null) {
  7. Set<Node<Object, Object>> owners = bbRoot.getChildren();
  8. if (owners != null) {
  9. for (Node<Object, Object> owner : owners) {
  10. @SuppressWarnings("unchecked")
  11. Node sipRoot = owner.getChild(sipappFqn);
  12. if (sipRoot != null) {
  13. @SuppressWarnings("unchecked")
  14. Set<String> ids = sipRoot.getChildrenNames();
  15. storeSipSessionOwners(ids, (String) owner.getFqn()
  16. .getLastElement(), result);
  17. }
  18. }
  19. }
  20. }
  21. storeSipSessionOwners(jBossCacheService.getChildrenNames(sipappFqn), null,
  22. result);
  23. return result;
  24. }

代码示例来源:origin: org.mobicents.core/mobicents-core-jar

  1. return;
  2. Map indexedAttributeNames = (Map) profileTableIndexesAttribute
  3. .getChildren();
  4. if (indexedAttributeNames != null) {
  5. Iterator indexIt = indexedAttributeNames.keySet().iterator();

代码示例来源:origin: org.mobicents.core/mobicents-core-jar

  1. Map profiles = childNode.getChildren();
  2. if (profiles != null) {
  3. Iterator profilesIt = profiles.values().iterator();

代码示例来源:origin: org.mobicents.core/mobicents-core-jar

  1. Map childrens = profileTableNode.getChildren();
  2. if (childrens != null) {
  3. Iterator it = childrens.values().iterator();

代码示例来源:origin: org.mobicents.core/mobicents-core-jar

  1. Node profileTableNode = transactionManager.getNode(tcache,
  2. profileTableKey);
  3. Map children = profileTableNode.getChildren();
  4. if (children != null) {
  5. if (children.size() >= 1) {

代码示例来源:origin: org.mobicents.core/mobicents-core-jar

  1. logger.debug("getChildren (" + tcache + "," + fqn + ")"
  2. + getFileAndLine());
  3. return node.getChildren();
  4. } catch (TimeoutException ex) {
  5. logger.error(this.displayOngoingSleeTransactions());

相关文章