Examples of queueRemove()


Examples of org.openntf.domino.transactions.DatabaseTransaction.queueRemove()

  private boolean queueRemove() {
    if (!isRemoveQueued_) {
      DatabaseTransaction txn = getParentDatabase().getTransaction();
      if (txn != null) {
        //        System.out.println("DEBUG: Found a transaction: " + txn + " from parent Database " + getParentDatabase().getApiPath());
        txn.queueRemove(this);
        isRemoveQueued_ = true;
        return true; // we queued this, so whoever asked shouldn't do it yet.
      } else {
        return false; // calling function should just go ahead and execute
      }
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.