PublicationMode

Determines which way attribute changes flow between the application and the PPS object.

Synopsis:

#include <qpps/object.h>

enum PublicationMode
{
    PublishMode = 0,
    SubscribeMode,
    PublishAndSubscribeMode
};

Data:

PublishMode
Publish but do not subscribe to attribute changes of the underlying PPS object.
SubscribeMode
Subscribe to but do not publish attribute changes of the underlying PPS object.
PublishAndSubscribeMode
Publish and subscribe to attribute changes of the underlying PPS object.
Note: When opening a server object in client mode, you must use this setting or you won't properly connect to the object.

Description:

Determines which way attribute changes flow between the application and the PPS object.