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

com.jd.blockchain.storage.service.PartitionDbConnection Maven / Gradle / Ivy

There is a newer version: 1.6.5.RELEASE
Show newest version
package com.jd.blockchain.storage.service;

import utils.Bytes;

/**
 * 支持分区的数据库连接;
 * 
 * @author huanghaiquan
 *
 */
public interface PartitionDbConnection extends DbConnection {

	/**
	 * 默认分区的存储服务;
	 */
	@Override
	KVStorageService getStorageService();

	/**
	 * 返回指定分区的存储服务;
	 * 
	 * @param partitionKey
	 * @return
	 */
	KVStorageService getStorageService(Bytes partitionKey);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy