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

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

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

Node.put介绍

[英]Associates the specified value with the specified key for this node. If this node previously contained a mapping for this key, the old value is replaced by the specified value.
[中]将指定的值与此节点的指定键相关联。如果此节点以前包含此键的映射,则旧值将替换为指定值。

代码示例

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

  1. @Override
  2. public V put(K key, V value)
  3. {
  4. return node.put(key, value);
  5. }

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

  1. @Override
  2. @SuppressWarnings("unchecked")
  3. public boolean add(K arg0)
  4. {
  5. return node.put(arg0, VALUE) == null;
  6. }

代码示例来源: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. clientTransactionNode.put(clientTransaction.getTransactionId(),
  2. clientTransaction);
  3. if (tx != null) {

相关文章