Akka.Cluster.Utility.ClusterActorDiscovery.NotifyActorUpToMonitor C# (CSharp) Method

NotifyActorUpToMonitor() private method

private NotifyActorUpToMonitor ( IActorRef actor, string tag ) : void
actor IActorRef
tag string
return void
        private void NotifyActorUpToMonitor(IActorRef actor, string tag)
        {
            foreach (var monitor in _monitorItems.Where(w => w.Tag == tag))
                monitor.Actor.Tell(new ClusterActorDiscoveryMessage.ActorUp(actor, tag));
        }