Ejemplo n.º 1
0
        private void OnMessageAck(Guid clientId, Ack ack)
        {
            _logger.LogInformation($"Ack received for message with id: {ack.Id} from client: {clientId}");

            if (_clientStore.TryGet(clientId, out var client))
            {
                client.OnPayloadAckReceived(ack.Id);
            }
        }