view Main/jungle-main/store/impl/logger/OperationLog.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

using System.Collections.Generic;
namespace JungleDB {
	public interface OperationLog : IEnumerable<NodeOperation> {
		OperationLog add (NodeOperation _op);
		int length();
	}
}