Akka.Interfaced.TestKit.TestNotificationChannel.INotificationChannel C# (CSharp) Méthode

INotificationChannel() public méthode

public INotificationChannel ( NotificationMessage notificationMessage ) : void
notificationMessage NotificationMessage
Résultat void
        void INotificationChannel.Notify(NotificationMessage notificationMessage)
        {
            if (Observer != null)
                notificationMessage.InvokePayload.Invoke(Observer);

            if (Messages != null)
                Messages.Add(notificationMessage);
        }
    }
TestNotificationChannel