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.
com.sybase.persistence.SynchronizationGroup sg = SUP101DB.getSynchronizationGroup("PushEnabled");

if (!sg.getEnableSIS())
{
  sg.setEnableSIS(true);
  sg.setInterval(2);
  sg.save();
  SUP101DB.synchronize("PushEnabled");
}