Oracle® C++ Call Interface Programmer's Guide 10g Release 2 (10.2) Part Number B14294-01 |
|
|
View PDF |
A NotifyResult object holds the notification information in the Streams AQ notification callback. It is created by OCCI before invoking a user-callback, and is destroyed after the user-callback returns.
Table 12-28 Summary of NotifyResult Methods
Method | Summary |
---|---|
getConsumerName() |
Returns the name of the notification consumer. |
getMessage() |
Returns the message. |
getMessageId() |
Returns the message ID. |
getPayload() |
Returns the payload. |
getQueueName() |
Returns the name of the queue. |
Gets the name of the consumer for which the message has been enqueued. In case of a single consumer queue, this is a empty string.
string getConsumerName() const;
Gets the message which has been enqueued into the non-persistent queue.
Message getMessage() const;
Gets the id of the message which has been enqueued.
Bytes getMessageId() const;
Gets the payload in case of a notification from NS_ANONYMOUS
namespace.
Bytes getPayload() const;
Gets the name of the queue on which the enqueue has happened
string getQueueName() const;