예제 #1
0
파일: Mover.java 프로젝트: mdykman/gauze
 public List<String> getSourceTables() throws ExecutionException {
   return source.getTables();
 }
예제 #2
0
파일: Mover.java 프로젝트: mdykman/gauze
 public List<String> getSourceSchema(
     String sourceKeyspace, String destKeyspace, Collection<String> tables) {
   return source.getSchema(sourceKeyspace, destKeyspace, tables);
 }
예제 #3
0
파일: Mover.java 프로젝트: mdykman/gauze
 public void close() {
   source.close();
   destination.close();
 }
예제 #4
0
파일: Mover.java 프로젝트: mdykman/gauze
 public List<ListenableFuture<ResultSet>> setDestinationSchema(List<String> ss) throws Exception {
   return destination.applyStatements(ss, true);
 }