view Main/jungle-main/store/operations/NodeOperation.cs @ 41:bd44baa491a9 default tip

add TestJungleCore.cs
author Kazuma Takeda
date Thu, 23 Feb 2017 17:19:55 +0900
parents 1466993c104c
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();
	}
}