Examples of queueUpdate()


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

  protected void markDirtyInt() {
    isDirty_ = true;
    if (!isQueued_) {
      DatabaseTransaction txn = getParentDatabase().getTransaction();
      if (txn != null) {
        txn.queueUpdate(this);
        isQueued_ = true;
      }
    }
  }
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.