view Main/jungle-main/store/operations/NodeOperation.cs @ 31:1466993c104c

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

namespace JungleDB {
	public interface NodeOperation {
		Command getCommand();
		Either<Error,TreeNode> invoke (TreeNode _target);
		int getPosition();
		string getKey();
		object getValue();
	}

	public interface NodeOperation<T> {
		Command getCommand();
		Either<Error,TreeNode> invoke (TreeNode _target);
		int getPosition();
		string getKey();
		MultiAttributes<T> getValue();
	}
}