public async Task Acknowledge(
            Notification notification,
            CancellationToken cancellationToken = default)
        {
            notification.Acknowledge();
            await _store.Update(notification, cancellationToken);

            await _sender.Acknowledge(notification, cancellationToken);
        }