ids_bbprofile_register_notifier_flag

The flags for registering/deregistering change notifications of entries within the profile.

Synopsis:

 enum ids_bbprofile_register_notifier_flag{
      IDS_PROFILE_NOTIFIER_START = 0x00000000   
      IDS_PROFILE_NOTIFIER_STOP = 0x00000001   
};

Since:

BlackBerry 10.2.0

Data:

IDS_PROFILE_NOTIFIER_START
Request to start receiving notifications.
IDS_PROFILE_NOTIFIER_STOP
Request to stop receiving notifications.

Library:

libids (For the qcc command, use the -l ids option to link against this library)

Description:

Notifications can be registered for entries either before or after they have been created. In cases where the registration is done after creation, the application is notified each time the value changes so that it can perform any necessary operations. If registration is done before an entry is created, the application is notified upon creation of the value as if it were an update. Additionally, registered applications receive a change notification when an entry is deleted. Multiple flags can be combined using bitwise 'OR' unless stated otherwise. See the flags parameter for the ids_register_notifier() function for more information.