comparison Main/jungle-main/store/operations/NodeOperation.cs @ 29:f7616084d3ab

Continue to put on the created path.
author Kazuma Takeda
date Wed, 18 Jan 2017 21:02:24 +0900
parents 1f99e150f336
children 1466993c104c
comparison
equal deleted inserted replaced
28:9588ad364fdd 29:f7616084d3ab
4 Either<Error,TreeNode> invoke (TreeNode _target); 4 Either<Error,TreeNode> invoke (TreeNode _target);
5 int getPosition(); 5 int getPosition();
6 string getKey(); 6 string getKey();
7 byte[] getValue(); 7 byte[] getValue();
8 } 8 }
9
10 public interface NodeOperation<T> {
11 Command getCommand();
12 Either<Error,TreeNode> invoke (TreeNode _target);
13 int getPosition();
14 string getKey();
15 MultiAttributes<T> getValue();
16 }
9 } 17 }