A synchronization group can enable or disable its change notifications.
Sybase.Persistence.ISynchronizationGroup sg = SUP101DB.GetSynchronizationGroup("PushEnabled");
if (!sg.EnableSIS)
{
sg.EnableSIS = true;
sg.Interval = 2; // 2 minutes
sg.Save();
SUP101DB.Synchronize("PushEnabled");
}