removeDelivered method
Implementation
void removeDelivered(List<String> processIds) {
for (final id in processIds) {
final hook = _pendingHooks[id];
if (hook != null && hook.responseAttachmentSent) {
_pendingHooks.remove(id);
}
}
}