annotate src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/transaction/TransactionManager.java @ 152:8a0aa8fc137c

Merge with a2c374a2686b82b0ad30f520412e191b84288fa9
author one
date Sat, 22 Nov 2014 15:25:09 +0900
parents d9fbddf77bf6 a2c374a2686b
children 20af7f25ef32
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
37
35e327577b58 added transaction
Shoshi TAMAKI
parents:
diff changeset
1 package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.transaction;
35e327577b58 added transaction
Shoshi TAMAKI
parents:
diff changeset
2
151
d9fbddf77bf6 add class Index
one
parents: 149
diff changeset
3
54
650fe2a0dccc modified tests
Shoshi TAMAKI
parents: 53
diff changeset
4 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.impl.TreeNode;
53
ed890dcb673e modified JungleTreeEditor
Shoshi TAMAKI
parents: 52
diff changeset
5 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.impl.logger.TreeOperationLog;
38
cb9fabaedfd4 added tests and changed testing provider to junit47
Shoshi TAMAKI
parents: 37
diff changeset
6 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Either;
cb9fabaedfd4 added tests and changed testing provider to junit47
Shoshi TAMAKI
parents: 37
diff changeset
7 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.util.Error;
151
d9fbddf77bf6 add class Index
one
parents: 149
diff changeset
8 import jp.ac.u_ryukyu.ie.cr.tatsuki.jungle.store.index.Index;
149
feb2346ace19 refactor ParentIndex
one
parents: 146
diff changeset
9 import jp.ac.u_ryukyu.ie.cr.tatsuki.jungle.store.index.ParentIndex;
37
35e327577b58 added transaction
Shoshi TAMAKI
parents:
diff changeset
10
86
fb1dc448ac8c delete <T extends TreeNode>
one
parents: 82
diff changeset
11 public interface TransactionManager
37
35e327577b58 added transaction
Shoshi TAMAKI
parents:
diff changeset
12 {
151
d9fbddf77bf6 add class Index
one
parents: 149
diff changeset
13 public Either<Error,TransactionManager> commit(TreeNode _newRoot,TreeOperationLog _log, Index index,ParentIndex parentIndex);
45
fb00d7b147c8 added JungleTree service
Shoshi TAMAKI
parents: 38
diff changeset
14 public String getUUID();
fb00d7b147c8 added JungleTree service
Shoshi TAMAKI
parents: 38
diff changeset
15 public long getRevision();
37
35e327577b58 added transaction
Shoshi TAMAKI
parents:
diff changeset
16 }