Akka.Cluster.Utility.ClusterActorDiscovery.NotifyActorUpToMonitor C# (CSharp) Méthode

NotifyActorUpToMonitor() private méthode

private NotifyActorUpToMonitor ( IActorRef actor, string tag ) : void
actor IActorRef
tag string
Résultat 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));
        }