Aaronontheweb on dev
Fix #4083 - Endpoint receive bu… (compare)
ActorPath
to cache its sender, which can be a bit ephemeral in DistributedPubSub
ActorSelection.Ask<ActorIdentity>(new Identify(null))
ActorIdentity.Subject
will be null
@Aaronontheweb
it's a common problem - so coming up with a canonical solution would be a good idea. I think it's going to be something inherent in the actor on either end of the pub/sub relationship though, rather than a modification of the DistributedPubSub system itself
The problem with this is that the publisher doesn't know who all the subscribers are. So my thinking was that the mediator would ensure the message got through. Also, in my scenario, all subscribers require the message to come through, not just a single subscriber. Can't the acknowledgement protocol be used between the mediator and the subscriber?