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

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

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

Node.getChildrenNames介绍

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

代码示例

代码示例来源:origin: org.jboss.cache/jbosscache-core

  1. @Override
  2. public boolean isEmpty()
  3. {
  4. return node.getChildrenNames().isEmpty();
  5. }

代码示例来源:origin: org.jboss.cache/jbosscache-core

  1. @Override
  2. public int size()
  3. {
  4. return node.getChildrenNames().size();
  5. }

代码示例来源:origin: org.jboss.cache/jbosscache-core

  1. @Override
  2. public void clear()
  3. {
  4. for (Object o : node.getChildrenNames())
  5. node.removeChild(o);
  6. }

代码示例来源:origin: org.jboss.cache/jbosscache-core

  1. public Set<?> getChildrenNames(Fqn fqn) throws Exception
  2. {
  3. Node node = delegate.getRoot().getChild(fqn);
  4. if (node == null) return null;
  5. Set cn = node.getChildrenNames();
  6. // the cache loader contract is a bit different from the cache when it comes to dealing with childrenNames
  7. if (cn.isEmpty()) return null;
  8. return cn;
  9. }

代码示例来源:origin: org.hibernate/hibernate-jbosscache2

  1. public static Set getChildrenNames(Cache cache, Fqn fqn) {
  2. Node node = cache.getRoot().getChild(fqn);
  3. return (node != null) ? node.getChildrenNames() : Collections.emptySet();
  4. }

代码示例来源:origin: org.hibernate/hibernate-jbosscache

  1. public static Set getChildrenNames(Cache cache, Fqn fqn) {
  2. Node node = cache.getRoot().getChild(fqn);
  3. return (node != null) ? node.getChildrenNames() : Collections.emptySet();
  4. }

代码示例来源:origin: org.jboss.cache/jbosscache-core

  1. fqn = (Fqn) input.readObject();
  2. Node node = c.getRoot().getChild(fqn);
  3. Set<Object> children = node == null ? Collections.emptySet() : new HashSet(node.getChildrenNames());
  4. output.writeObject(children);
  5. break;

代码示例来源: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.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.jboss.cache/jbosscache-core

  1. private Fqn getDefunctBackupRootFqn(Address dataOwner)
  2. {
  3. // the defunct Fqn should be: /_BUDDY_BACKUP_/dataOwnerAddess:DEAD/N
  4. // where N is a number.
  5. Fqn defunctRoot = buddyFqnTransformer.getDeadBackupRoot(dataOwner);
  6. cache.getInvocationContext().getOptionOverrides().setCacheModeLocal(true);
  7. cache.getInvocationContext().getOptionOverrides().setSkipCacheStatusCheck(true);
  8. Node<?, ?> root = cache.getRoot();
  9. cache.getInvocationContext().getOptionOverrides().setCacheModeLocal(true);
  10. cache.getInvocationContext().getOptionOverrides().setSkipCacheStatusCheck(true);
  11. Node<?, ?> defunctRootNode = root.addChild(defunctRoot);
  12. SortedSet<Object> childrenNames = new TreeSet<Object>(defunctRootNode.getChildrenNames()); // will be naturally sorted.
  13. Integer childName = 1;
  14. if (!childrenNames.isEmpty())
  15. {
  16. Integer lastChild = (Integer) childrenNames.last();
  17. childName = lastChild + 1;
  18. }
  19. cache.getInvocationContext().getOptionOverrides().setCacheModeLocal(true);
  20. defunctRootNode.addChild(Fqn.fromElements(childName));
  21. return Fqn.fromRelativeElements(defunctRoot, childName);
  22. }

代码示例来源:origin: org.jboss.cache/jbosscache-core

  1. actualNode.getChildrenNames();

相关文章