public void Handle(MarkPeerAsRespondingCommand message)
 {
     _peerRepository.SetPeerResponding(message.PeerId, true);
     _bus.Publish(new PeerResponding(message.PeerId, message.TimestampUtc));
 }