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