comparison src/main/java/alice/jungle/transaction/NetworkDefaultJungleTreeEditor.java @ 193:89c15aa2bc6d

change transaction
author tatsuki
date Fri, 20 Mar 2015 16:18:42 +0900
parents 5d0734fd859d
children
comparison
equal deleted inserted replaced
192:3202a2a427b1 193:89c15aa2bc6d
180 public void putDataSegment(String _uuid, String _treeName, String _updaterName, Iterable<TreeOperation> newLog, String nextRevision) throws IOException { 180 public void putDataSegment(String _uuid, String _treeName, String _updaterName, Iterable<TreeOperation> newLog, String nextRevision) throws IOException {
181 NetworkTreeOperationLog netLog = new NetworkTreeOperationLog(_uuid, _treeName,newLog); 181 NetworkTreeOperationLog netLog = new NetworkTreeOperationLog(_uuid, _treeName,newLog);
182 CodeSegment cs = new LogPutCodeSegment(netLog); 182 CodeSegment cs = new LogPutCodeSegment(netLog);
183 cs.execute(); 183 cs.execute();
184 } 184 }
185
186 @Override
187 public Either<Error, JungleTreeEditor> replaceNewRootNode() {
188 // TODO Auto-generated method stub
189 return null;
190 }
185 } 191 }