Akka.Interfaced.SlimServer.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