⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nullfile.java

📁 这个是perst-269.zip下面的SOURCECODE,和大家分享了。
💻 JAVA
字号:
package org.garret.perst;

/**
 * This implementation of <code>IFile</code> interface can be used
 * to make Perst an main-memory database. It should be used when pagePoolSize
 * is set to <code>Storage.INFINITE_PAGE_POOL</code>. In this case all pages are cached in memory
 * and <code>NullFile</code> is used just as a stub.<P>
 * <code>NullFile</code> should be used only when data is transient - i.e. it should not be saved
 * between database sessions. If you need in-memory database but which provide data persistency, 
 * you should use normal file and infinite page pool size. 
 */
public class NullFile implements IFile 
{ 
    public void write(long pos, byte[] buf) {}

    public int read(long pos, byte[] buf) {
        return 0;
    }

    public void sync() {}

    public boolean tryLock(boolean shared) { 
        return true;
    }

    public void lock(boolean shared) { 
    }

    public void unlock() { 
    }

    public void close() {}

    public long length() { 
        return 0;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -