Examples of removeDirect()


Examples of org.jboss.cache.NodeSPI.removeDirect()

   {
      NodeSPI n = dataContainer.peek(fqn, false, false);
      if (n == null) throw new CacheException("node " + fqn + " not found for rollback!");
      if (oldValue == null)
      {
         n.removeDirect(key);
      }
      else
      {
         n.putDirect(key, oldValue);
      }
View Full Code Here

Examples of org.jboss.cache.NodeSPI.removeDirect()

   {
      NodeSPI n = dataContainer.peek(fqn, false, false);
      if (n == null) throw new CacheException("node " + fqn + " not found for rollback!");
      if (oldValue == null)
      {
         n.removeDirect(key);
      }
      else
      {
         n.putDirect(key, oldValue);
      }
View Full Code Here

Examples of org.jboss.cache.NodeSPI.removeDirect()

      }
      if (notifier.shouldNotifyOnNodeModified())
      {
         notifier.notifyNodeModified(fqn, true, NodeModifiedEvent.ModificationType.REMOVE_DATA, n.getDataDirect(), ctx);
      }
      Object oldValue = n.removeDirect(key);
      if (notifier.shouldNotifyOnNodeModified())
      {
         Map removedData = Collections.singletonMap(key, oldValue);
         notifier.notifyNodeModified(fqn, false, NodeModifiedEvent.ModificationType.REMOVE_DATA, removedData, ctx);
      }
View Full Code Here

Examples of org.jboss.cache.NodeSPI.removeDirect()

      }
      if (notifier.shouldNotifyOnNodeModified())
      {
         notifier.notifyNodeModified(fqn, true, NodeModifiedEvent.ModificationType.REMOVE_DATA, n.getDataDirect(), ctx);
      }
      this.oldValue = n.removeDirect(key);
      if (notifier.shouldNotifyOnNodeModified())
      {
         Map removedData = Collections.singletonMap(key, oldValue);
         notifier.notifyNodeModified(fqn, false, NodeModifiedEvent.ModificationType.REMOVE_DATA, removedData, ctx);
      }
View Full Code Here

Examples of org.jboss.cache.NodeSPI.removeDirect()

   {
      NodeSPI n = dataContainer.peek(fqn, false, false);
      if (n == null) throw new CacheException("node " + fqn + " not found for rollback!");
      if (oldValue == null)
      {
         n.removeDirect(key);
      }
      else
      {
         n.putDirect(key, oldValue);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.