Commits
Marie Verdonck authored 1549872cb8e
269 269 | |
270 270 | /** |
271 271 | * Add operations to the existing list of operations for an ObjectCacheEntry |
272 272 | * Makes sure the ServerSyncBuffer for this ObjectCacheEntry is updated |
273 273 | * @param {string} uuid |
274 274 | * the uuid of the ObjectCacheEntry |
275 275 | * @param {Operation[]} patch |
276 276 | * list of operations to perform |
277 277 | */ |
278 278 | public addPatch(selfLink: string, patch: Operation[]) { |
279 - | console.log('selfLink addPatch', selfLink) |
280 - | console.log('patch addPatch', patch) |
281 279 | this.store.dispatch(new AddPatchObjectCacheAction(selfLink, patch)); |
282 280 | this.store.dispatch(new AddToSSBAction(selfLink, RestRequestMethod.PATCH)); |
283 281 | } |
284 282 | |
285 283 | /** |
286 284 | * Check whether there are any unperformed operations for an ObjectCacheEntry |
287 285 | * |
288 286 | * @param entry |
289 287 | * the entry to check |
290 288 | * @return boolean |