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