ObserverSubscriptionManager<T>.Notify(Action<T>) 方法

定义

向所有订阅者发送通知。

public void Notify (Action<T> notification);
member this.Notify : Action<'T (requires 'T :> Orleans.IGrainObserver)> -> unit
Public Sub Notify (notification As Action(Of T))

参数

notification
Action<T>

通过调用提供订阅服务器上的正确方法发送通知的操作。 对于每个当前订阅者,此操作将调用一次。

适用于