All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ltsopensource.kv.index.IndexSnapshot Maven / Gradle / Ivy

package com.github.ltsopensource.kv.index;

import java.io.IOException;

/**
 * @author Robert HG ([email protected]) on 12/19/15.
 */
public interface IndexSnapshot {

    /**
     * 初始化, 包括从磁盘中加载, 重放事务日志等
     */
    public void init() throws IOException;

    /**
     * 快照
     */
    public void snapshot() throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy