InvokeRequestTargetFiltersReply
#include <bb/system/InvokeRequestTargetFiltersReply>
To link against this class, add the following line to your .pro file: LIBS += -lbbsystem
Encapsulates the results from a request to retrieve a target's filters.
When a client sends a request to get a target's set of filters to the invocation service (using InvokeManager::requestTargetFilters()), it subsequently receives a reply message containing the list of the target's filters. To handle the reply message, connect to the InvokeRequestTargetFiltersReply::finished() signal of the object returned by InvokeManager::requestTargetFilters(). This method is asynchronous, returning immediately and using the returned InvokeRequestTargetFiltersReply as a future. Consequently, the value returned by the error() method is not valid until the reply message arrives (when finished() is emitted).
BlackBerry 10.0.0
Inheritance
| bb::system::InvokeReply | ||
| bb::system::InvokeRequestTargetFiltersReply | ||
Public Functions Index
| InvokeRequestTargetFiltersReply (QObject *parent=0) | |
| virtual | ~InvokeRequestTargetFiltersReply () |
| QString | targetKey () const |
| QList< InvokeTargetFilter > | filters () const |
| bb::system::InvokeReplyError::Type | error () const |
| InvokeReply (QObject *parent=0) | |
| bool | isFinished () const |
Signals Index
Only has inherited signals
| void | finished () |
Public Functions
Creates a new InvokeRequestTargetFiltersReply object.
| Parameters | |
|---|---|
| parent |
If not 0, the supplied parent will be responsible for deleting this instance. |
BlackBerry 10.0.0
virtual
Destructor.
BlackBerry 10.0.0
QString
Returns the target key to which the filters apply.
The target key.
BlackBerry 10.0.0
QList< InvokeTargetFilter >
Returns the list of target filters from the reply message.
The list of target filters from the reply message.
BlackBerry 10.0.0
bb::system::InvokeReplyError::Type 
Returns the error code from the reply message.
The return value is not valid until a reply message has been received.
The error code from the reply message. See bb::system::InvokeReplyError for the list of possible results.
BlackBerry 10.0.0
Creates a new InvokeReply object.
| Parameters | |
|---|---|
| parent |
If not 0, the supplied parent will be responsible for deleting this instance. |
BlackBerry 10.0.0
bool 
Checks whether a reply message has been received.
The value returned by the error() method is not valid until a reply message has been received.
true if a reply message has been received, false otherwise.
BlackBerry 10.0.0
Signals
(Only has inherited signals)
void 
Emitted when a reply message is received.
The value returned by the error() method is not valid until a reply message has been received.
BlackBerry 10.0.0