Examples of LatchStats


Examples of com.sleepycat.je.latch.LatchStats

        if (config.getClear()) {
            nWaits = 0;
            nRequests = 0;
        }

        LatchStats latchStats =(LatchStats) lockTableLatch.getLatchStats();
        stats.setLockTableLatchStats(latchStats);

        /* Dump info about the lock table. */
        if (!config.getFast()) {
            dumpLockTable(stats);
View Full Code Here

Examples of com.sleepycat.je.latch.LatchStats

            nWaits = 0;
            nRequests = 0;
        }

  for (int i = 0; i < nLockTables; i++) {
      LatchStats latchStats =
    (LatchStats) lockTableLatches[i].getLatchStats();
      stats.accumulateLockTableLatchStats(latchStats);
  }

        /* Dump info about the lock table. */
 
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.