?? cache.java
字號(hào):
/*
* Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
* (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package org.h2.util;
import java.sql.SQLException;
/**
* The cache keeps frequently used objects in the main memory.
*/
public interface Cache {
/**
* Get all objects in the cache that have been changed.
*
* @return the list of objects
*/
ObjectArray getAllChanged();
/**
* Clear the cache.
*/
void clear();
/**
* Get an element in the cache if it is available.
* This will move the item to the front of the list.
*
* @param pos the unique key of the element
* @return the element or null
*/
CacheObject get(int pos);
/**
* Add an element to the cache. Other items may fall out of the cache
* because of this. It is not allowed to add the same record twice.
*
* @param r the object
*/
void put(CacheObject r) throws SQLException;
/**
* Update an element in the cache.
* This will move the item to the front of the list.
*
* @param pos the unique key of the element
* @param record the element
* @return the element
*/
CacheObject update(int pos, CacheObject record) throws SQLException;
/**
* Remove an object from the cache.
*
* @param pos the unique key of the element
*/
void remove(int pos);
/**
* Get an element from the cache if it is available.
* This will not move the item to the front of the list.
*
* @param pos the unique key of the element
* @return the element or null
*/
CacheObject find(int pos);
/**
* Set the maximum memory to be used by this cache.
*
* @param memorySize in number of double words (4 bytes)
*/
void setMaxSize(int memorySize) throws SQLException;
/**
* Get the name of the cache type in a human readable form.
*
* @return the cache type name
*/
String getTypeName();
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -