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

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

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

Node.addChild介绍

[英]Adds a child node with the given Fqn under the current node. Returns the newly created node.

If the child exists returns the child node anyway. Guaranteed to return a non-null node.

The Fqn passed in is relative to the current node. The new child node will have an absolute fqn calculated as follows:

  1. new Fqn(getFqn(), f)

. See Fqn for the operation of this constructor.
[中]在当前节点下添加具有给定Fqn的子节点。返回新创建的节点。
如果子节点存在,则返回子节点。保证返回非空节点。
传入的Fqn是相对于当前节点的。新子节点的绝对fqn计算如下:

  1. new Fqn(getFqn(), f)

. 有关此构造函数的操作,请参见Fqn。

代码示例

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

  1. @Override
  2. @SuppressWarnings("unchecked")
  3. public V put(K arg0, V arg1)
  4. {
  5. return (V) node.addChild(Fqn.fromElements(arg0)).put(KEY, arg1);
  6. }

代码示例来源:origin: org.mobicents.ha.javax.sip/restcomm-jain-sip-jboss5

  1. public void putDialog(SIPDialog dialog) throws SipCacheException {
  2. UserTransaction tx = null;
  3. try {
  4. Properties prop = new Properties();
  5. prop.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.cache.transaction.DummyContextFactory");
  6. tx = (UserTransaction) new InitialContext(prop).lookup("UserTransaction");
  7. if(tx != null) {
  8. tx.begin();
  9. }
  10. Node dialogNode = dialogRootNode.addChild(Fqn.fromString(dialog.getDialogId()));
  11. dialogNode.put(dialog.getDialogId(), dialog);
  12. if(tx != null) {
  13. tx.commit();
  14. }
  15. } catch (Exception e) {
  16. if(tx != null) {
  17. try { tx.rollback(); } catch(Throwable t) {}
  18. }
  19. throw new SipCacheException("A problem occured while putting the following dialog " + dialog.getDialogId() + " into JBoss Cache", e);
  20. }
  21. }

代码示例来源:origin: org.mobicents.ha.javax.sip/restcomm-jain-sip-jboss5

  1. public void putServerTransaction(SIPServerTransaction serverTransaction)
  2. throws SipCacheException {
  3. UserTransaction tx = null;
  4. try {
  5. Properties prop = new Properties();
  6. prop.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.cache.transaction.DummyContextFactory");
  7. tx = (UserTransaction) new InitialContext(prop).lookup("UserTransaction");
  8. if(tx != null) {
  9. tx.begin();
  10. }
  11. Node serverTransactionNode = serverTxRootNode.addChild(Fqn.fromString(serverTransaction.getTransactionId()));
  12. serverTransactionNode.put(serverTransaction.getTransactionId(), serverTransaction);
  13. if(tx != null) {
  14. tx.commit();
  15. }
  16. } catch (Exception e) {
  17. if(tx != null) {
  18. try { tx.rollback(); } catch(Throwable t) {}
  19. }
  20. throw new SipCacheException("A problem occured while putting the following server transaction " + serverTransaction.getTransactionId() + " into JBoss Cache", e);
  21. }
  22. }

代码示例来源:origin: org.mobicents.ha.javax.sip/restcomm-jain-sip-jboss5

  1. tx.begin();
  2. Node clientTransactionNode = clientTxRootNode.addChild(Fqn
  3. .fromString(clientTransaction.getTransactionId()));
  4. clientTransactionNode.put(clientTransaction.getTransactionId(),

代码示例来源:origin: org.mobicents.ha.javax.sip/restcomm-jain-sip-jboss5

  1. public void start() throws SipCacheException {
  2. try {
  3. cache.start();
  4. } catch (Exception e) {
  5. throw new SipCacheException("Couldn't start JBoss Cache", e);
  6. }
  7. dialogRootNode = cache.getRoot().getChild(SipCache.DIALOG_PARENT_FQN_ELEMENT);
  8. if(dialogRootNode == null) {
  9. dialogRootNode = cache.getRoot().addChild(Fqn.fromElements(SipCache.DIALOG_PARENT_FQN_ELEMENT));
  10. }
  11. if(clusteredSipStack.getReplicationStrategy() == ReplicationStrategy.EarlyDialog) {
  12. serverTxRootNode = cache.getRoot().getChild(SipCache.SERVER_TX_PARENT_FQN_ELEMENT);
  13. if(serverTxRootNode == null) {
  14. serverTxRootNode = cache.getRoot().addChild(Fqn.fromElements(SipCache.SERVER_TX_PARENT_FQN_ELEMENT));
  15. }
  16. }
  17. }

代码示例来源: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. subtreeRoot = root.addChild(fqn);
  2. cache.getInvocationContext().getOptionOverrides().setCacheModeLocal(false);

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

  1. added = root.addChild( fqn );

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

  1. added = root.addChild( fqn );

相关文章