Exemple #1
0
 protected void updateRowsAndNotify(String tableName, List<Map<String, Object>> updateRowList) {
   updateRows(tableName, updateRowList);
   sendNotification(tableName, StorageSourceNotification.Action.MODIFY, updateRowList);
 }
Exemple #2
0
 protected void updateRowsAndNotify(
     String tableName, Set<Object> rowKeys, Map<String, Object> updateRowList) {
   updateRows(tableName, rowKeys, updateRowList);
   sendNotification(tableName, StorageSourceNotification.Action.MODIFY, rowKeys);
 }