Package com.sleepycat.je.latch

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


            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

Related Classes of com.sleepycat.je.latch.LatchStats

Copyright © 2018 www.massapicom. 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.