📄 dbqueuestat.java
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1999 * Sleepycat Software. All rights reserved. * * @(#)DbQueueStat.java 11.1 (Sleepycat) 8/26/99 */package com.sleepycat.db;/* * This is filled in and returned by the * Db.stat() method. */public class DbQueueStat{ public int qs_magic; // Magic number. public int qs_version; // Version number. public int qs_metaflags; // Metadata flags. public int qs_nrecs; // Number of records. public int qs_pages; // Data pages. public int qs_pagesize; // Page size. public int qs_pgfree; // Bytes free in data pages. public int qs_re_len; // Fixed-length record length. public int qs_re_pad; // Fixed-length record pad. public int qs_start; // Start offset. public int qs_first_recno; // First not deleted record. public int qs_cur_recno; // Last allocated record number.}// end of DbQueueStat.java
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -