DbLockStat.java
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: DbLockStat.java,v 11.3 2000/02/14 02:59:56 bostic Exp $
  8.  */
  9. package com.sleepycat.db;
  10. /*
  11.  * This is filled in and returned by the
  12.  * DbLockTab.stat() method.
  13.  */
  14. public class DbLockStat
  15. {
  16.     public int st_maxlocks;             // Maximum number of locks in table.
  17.     public int st_nmodes;               // Number of lock modes.
  18.     public int st_nlockers;             // Number of lockers.
  19.     public int st_nconflicts;           // Number of lock conflicts.
  20.     public int st_nrequests;            // Number of lock gets.
  21.     public int st_nreleases;            // Number of lock puts.
  22.     public int st_ndeadlocks;           // Number of lock deadlocks.
  23.     public int st_region_wait;          // Region lock granted after wait.
  24.     public int st_region_nowait;        // Region lock granted without wait.
  25.     public int st_regsize;              // Region size.
  26. }
  27. // end of DbLockStat.java