Akka.Interfaced.TestKit.TestNotificationChannel.INotificationChannel C# (CSharp) Метод

INotificationChannel() публичный Метод

public INotificationChannel ( NotificationMessage notificationMessage ) : void
notificationMessage NotificationMessage
Результат void
        void INotificationChannel.Notify(NotificationMessage notificationMessage)
        {
            if (Observer != null)
                notificationMessage.InvokePayload.Invoke(Observer);

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