Esempio n. 1
0
 public Object[] batch(String tableName, List<? extends Row> paramList) {
   try {
     return hzTemplate.batch(tableName, paramList);
   } catch (Exception ex) {
     throw new HzBaoException(ex);
   }
 }
Esempio n. 2
0
 public void batch(String tableName, List<? extends Row> paramList, Object[] paramArrayOfObject) {
   try {
     hzTemplate.batch(tableName, paramList, paramArrayOfObject);
   } catch (Exception ex) {
     throw new HzBaoException(ex);
   }
 }