| 89 | |
| 90 | |
| 91 | Future<bool> OperationStatusUpdateManager::acknowledgement( |
| 92 | const id::UUID& operationUuid, |
| 93 | const id::UUID& statusUuid) |
| 94 | { |
| 95 | return dispatch( |
| 96 | process.get(), |
| 97 | &StatusUpdateManagerProcess< |
| 98 | id::UUID, |
| 99 | UpdateOperationStatusRecord, |
| 100 | UpdateOperationStatusMessage>::acknowledgement, |
| 101 | operationUuid, |
| 102 | statusUuid); |
| 103 | } |
| 104 | |
| 105 | |
| 106 | process::Future<OperationStatusUpdateManagerState> |