Enabling Change Notifications

A synchronization group can enable or disable its change notification.

By default, change notifcations are disabled for synchronization groups. To enable change notification, call the SynchronizationGroup object's SetEnableSIS method.
Sybase.Persistence.ISynchronizationGroup sg = SUP101DB.GetSynchronizationGroup("PushEnabled");

if (!sg.EnableSIS)
{
  sg.EnableSIS = true; 
  sg.Interval = 2; // 2 minutes
  sg.Save();
  SUP101DB.Synchronize("PushEnabled");
}