view Main/jungle-main/transaction/TransactionManager.cs @ 31:1466993c104c

byte[] to object Rewrite.
author Kazuma Takeda
date Fri, 20 Jan 2017 07:08:03 +0900
parents 1f99e150f336
children
line wrap: on
line source


namespace JungleDB {
	public interface TransactionManager  {
		Either<Error, TransactionManager> commit(TreeNode _newRoot, TreeOperationLog _log);
		Either<Error, TransactionManager> firstcommit(TreeNode _newRoot, TreeOperationLog _log);
		string getUUID();
		long getRevision();
	}
}