コード例 #1
0
ファイル: NoSqlStorageSource.java プロジェクト: jmdbo/CGR
 protected void updateRowsAndNotify(String tableName, List<Map<String, Object>> updateRowList) {
   updateRows(tableName, updateRowList);
   sendNotification(tableName, StorageSourceNotification.Action.MODIFY, updateRowList);
 }
コード例 #2
0
ファイル: NoSqlStorageSource.java プロジェクト: jmdbo/CGR
 protected void updateRowsAndNotify(
     String tableName, Set<Object> rowKeys, Map<String, Object> updateRowList) {
   updateRows(tableName, rowKeys, updateRowList);
   sendNotification(tableName, StorageSourceNotification.Action.MODIFY, rowKeys);
 }