public static SubscriptionToken Subscribe( Action<RowChangedEventArgs> action, Table table, bool keepSubscriberAlive )
Public Shared Function Subscribe( _ ByVal action As Action(Of RowChangedEventArgs), _ ByVal table As Table, _ Optional ByVal keepSubscriberAlive As Boolean _ ) As SubscriptionToken
Parameters
- action
- The delegate that gets executed when the event is published.
- table
- The table to listen to.
- keepSubscriberAlive
- (optional) The type of reference used to maintain the delegate. false is a weak reference, true is a strong reference. (default value = false)
Return Value
A token that uniquely identifies the subscription.