proton
0
|
The Condition API for the proton Engine. More...
#include <proton/import_export.h>
#include <proton/codec.h>
#include <proton/type_compat.h>
#include <stddef.h>
#include <sys/types.h>
Go to the source code of this file.
Typedefs | |
typedef struct pn_condition_t | pn_condition_t |
An AMQP Condition object. More... | |
Functions | |
PN_EXTERN bool | pn_condition_is_set (pn_condition_t *condition) |
Returns true if the condition object is holding some information, i.e. More... | |
PN_EXTERN void | pn_condition_clear (pn_condition_t *condition) |
Clears the condition object of any exceptional information. More... | |
PN_EXTERN const char * | pn_condition_get_name (pn_condition_t *condition) |
Returns the name associated with the exceptional condition, or NULL if there is no conditional information set. More... | |
PN_EXTERN int | pn_condition_set_name (pn_condition_t *condition, const char *name) |
Sets the name associated with the exceptional condition. More... | |
PN_EXTERN const char * | pn_condition_get_description (pn_condition_t *condition) |
Gets the description associated with the exceptional condition. More... | |
PN_EXTERN int | pn_condition_set_description (pn_condition_t *condition, const char *description) |
Sets the description associated with the exceptional condition. More... | |
PN_EXTERN pn_data_t * | pn_condition_info (pn_condition_t *condition) |
Returns a data object that holds the additional information associated with the condition. More... | |
PN_EXTERN bool | pn_condition_is_redirect (pn_condition_t *condition) |
Returns true if the condition is a redirect. More... | |
PN_EXTERN const char * | pn_condition_redirect_host (pn_condition_t *condition) |
Retrieves the redirect host from the additional information associated with the condition. More... | |
PN_EXTERN int | pn_condition_redirect_port (pn_condition_t *condition) |
Retrieves the redirect port from the additional information associated with the condition. More... | |
The Condition API for the proton Engine.