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

sleepy
author Shoshi TAMAKI
date Fri, 08 Feb 2013 03:50:21 +0900
parents fb00d7b147c8
children ed890dcb673e
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
38
cb9fabaedfd4 added tests and changed testing provider to junit47
Shoshi TAMAKI
parents: 37
diff changeset
3 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.impl.DefaultNode;
cb9fabaedfd4 added tests and changed testing provider to junit47
Shoshi TAMAKI
parents: 37
diff changeset
4 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.impl.logger.Logger;
52
Shoshi TAMAKI
parents: 45
diff changeset
5 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.impl.logger.OperationLog;
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;
37
35e327577b58 added transaction
Shoshi TAMAKI
parents:
diff changeset
8
35e327577b58 added transaction
Shoshi TAMAKI
parents:
diff changeset
9 public interface TransactionManager
35e327577b58 added transaction
Shoshi TAMAKI
parents:
diff changeset
10 {
52
Shoshi TAMAKI
parents: 45
diff changeset
11 public Either<Error,TransactionManager> commit(DefaultNode _newRoot,TreeOperationLog _log);
45
fb00d7b147c8 added JungleTree service
Shoshi TAMAKI
parents: 38
diff changeset
12 public String getUUID();
fb00d7b147c8 added JungleTree service
Shoshi TAMAKI
parents: 38
diff changeset
13 public long getRevision();
37
35e327577b58 added transaction
Shoshi TAMAKI
parents:
diff changeset
14 }