ObserverSubscriptionManager<T>.Notify(Action<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sends a notification to all subscribers.
public void Notify (Action<T> notification);
member this.Notify : Action<'T (requires 'T :> Orleans.IGrainObserver)> -> unit
Public Sub Notify (notification As Action(Of T))
Parameters
- notification
- Action<T>
An action that sends the notification by invoking the proper method on the provided subscriber. This action is called once for each current subscriber.