本文整理汇总了Java中org.hsqldb.lib.IntValueHashMap.remove方法的典型用法代码示例。如果您正苦于以下问题:Java IntValueHashMap.remove方法的具体用法?Java IntValueHashMap.remove怎么用?Java IntValueHashMap.remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.hsqldb.lib.IntValueHashMap
的用法示例。
在下文中一共展示了IntValueHashMap.remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: freeStatement
import org.hsqldb.lib.IntValueHashMap; //导入方法依赖的package包/类
/**
* Removes one (or all) of the links between a session and a compiled statement.
*
* If the statement is not linked with any other session, it is removed
* from management.
*
* @param csid the compiled statment identifier
* @param sid the session identifier
* @param freeAll if true, remove all links to the session
*/
void freeStatement(int csid, int sid, boolean freeAll) {
if (csid == -1) {
// statement was never added
return;
}
IntKeyIntValueHashMap scsMap =
(IntKeyIntValueHashMap) sessionUseMap.get(sid);
if (scsMap == null) {
// statement already removed due to invalidation
return;
}
int sessionUseCount = scsMap.get(csid, 0);
if (sessionUseCount == 0) {
// statement already removed due to invalidation
} else if (sessionUseCount == 1 || freeAll) {
scsMap.remove(csid);
int usecount = useMap.get(csid, 0);
if (usecount == 0) {
// statement already removed due to invalidation
} else if (usecount == 1) {
CompiledStatement cs =
(CompiledStatement) csidMap.remove(csid);
if (cs != null) {
int schemaid = cs.schemaHsqlName.hashCode();
IntValueHashMap sqlMap =
(IntValueHashMap) schemaMap.get(schemaid);
String sql = (String) sqlLookup.remove(csid);
sqlMap.remove(sql);
}
useMap.remove(csid);
} else {
useMap.put(csid, usecount - 1);
}
} else {
scsMap.put(csid, sessionUseCount - 1);
}
}