A synchronization group can enable or disable its change notifications.
com.sybase.persistence.SynchronizationGroup sg = SMP101DB.getSynchronizationGroup("PushEnabled");
if (!sg.getEnableSIS())
{
  sg.setEnableSIS(true);
  sg.setInterval(2);
  sg.save();
  SMP101DB.synchronize("PushEnabled");
}