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

com.logicbus.kvalue.core.Schema Maven / Gradle / Ivy

package com.logicbus.kvalue.core;

import com.anysoft.util.Properties;
import com.anysoft.util.Reportable;
import com.anysoft.util.XMLConfigurable;

/**
 * KeyValue DB的模式
 * @author duanyy
 *
 */
public interface Schema extends AutoCloseable,XMLConfigurable,Reportable{
	public String getId();
	public void create(Properties props);
	public Table getTable(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy