25#include <proton/import_export.h>
26#include <proton/type_compat.h>
struct pn_condition_t pn_condition_t
An AMQP Condition object.
Definition: condition.h:64
struct pn_connection_t pn_connection_t
An AMQP Connection object.
Definition: types.h:285
int pn_state_t
Holds the state flags for an AMQP endpoint.
Definition: types.h:271
struct pn_data_t pn_data_t
An AMQP Data object.
Definition: codec.h:374
struct pn_delivery_t pn_delivery_t
An AMQP Delivery object.
Definition: types.h:405
struct pn_error_t pn_error_t
An int error code and some string text to describe the error.
Definition: error.h:44
ssize_t pn_link_recv(pn_link_t *receiver, char *bytes, size_t n)
Receive message data for the current delivery on a link.
pn_rcv_settle_mode_t pn_link_rcv_settle_mode(pn_link_t *link)
Get the local receiver settle mode for a link.
void pn_link_detach(pn_link_t *link)
Detach a link.
void pn_link_set_max_message_size(pn_link_t *link, uint64_t size)
Unsettled API - Set the maximum message size for a link.
pn_session_t * pn_link_session(pn_link_t *link)
Get the parent session for a link object.
pn_condition_t * pn_link_remote_condition(pn_link_t *link)
Get the remote condition associated with a link endpoint.
pn_error_t * pn_link_error(pn_link_t *link)
Deprecated - Use pn_link_condition().
void pn_link_set_context(pn_link_t *link, void *context)
Set a new application context for a link object.
pn_rcv_settle_mode_t pn_link_remote_rcv_settle_mode(pn_link_t *link)
Get the remote receiver settle mode for a link.
pn_snd_settle_mode_t
Describes the permitted/expected settlement behaviours of a sending link.
Definition: link.h:473
bool pn_link_get_drain(pn_link_t *link)
Get the drain flag for a link.
pn_data_t * pn_link_remote_properties(pn_link_t *link)
Access the AMQP link properties supplied by the remote link endpoint.
pn_terminus_t * pn_link_source(pn_link_t *link)
Access the locally defined source definition for a link.
void pn_link_close(pn_link_t *link)
Close a link.
bool pn_link_draining(pn_link_t *receiver)
Check if a link is currently draining.
pn_condition_t * pn_link_condition(pn_link_t *link)
Get the local condition associated with a link endpoint.
pn_delivery_t * pn_link_current(pn_link_t *link)
Get the current delivery for a link.
pn_delivery_t * pn_unsettled_head(pn_link_t *link)
Get the first unsettled delivery for a link.
int pn_link_credit(pn_link_t *link)
Get the credit balance for a link.
int pn_link_queued(pn_link_t *link)
Get the number of queued deliveries for a link.
void pn_link_set_snd_settle_mode(pn_link_t *link, pn_snd_settle_mode_t mode)
Set the local sender settle mode for a link.
pn_link_t * pn_receiver(pn_session_t *session, const char *name)
Construct a new receiver on a session.
pn_data_t * pn_link_properties(pn_link_t *link)
Access/modify the AMQP properties data for a link object.
bool pn_link_is_sender(pn_link_t *link)
Test if a link is a sender.
int pn_link_available(pn_link_t *link)
Get the available deliveries hint for a link.
pn_terminus_t * pn_link_remote_source(pn_link_t *link)
Access the remotely defined source definition for a link.
struct pn_link_t pn_link_t
An AMQP Link object.
Definition: types.h:315
pn_snd_settle_mode_t pn_link_remote_snd_settle_mode(pn_link_t *link)
Get the remote sender settle mode for a link.
bool pn_link_advance(pn_link_t *link)
Advance the current delivery of a link to the next delivery on the link.
int pn_link_drained(pn_link_t *link)
Drain excess credit for a link.
pn_link_t * pn_link_head(pn_connection_t *connection, pn_state_t state)
Retrieve the first link that matches the given state mask.
uint64_t pn_link_remote_max_message_size(pn_link_t *link)
Unsettled API - Get the remote view of the maximum message size for a link.
ssize_t pn_link_send(pn_link_t *sender, const char *bytes, size_t n)
Send message data for the current delivery on a link.
pn_link_t * pn_link_next(pn_link_t *link, pn_state_t state)
Retrieve the next link that matches the given state mask.
void pn_link_open(pn_link_t *link)
Open a link.
int pn_link_remote_credit(pn_link_t *link)
Get the remote view of the credit for a link.
pn_link_t * pn_sender(pn_session_t *session, const char *name)
Construct a new sender on a session.
void pn_link_set_rcv_settle_mode(pn_link_t *link, pn_rcv_settle_mode_t mode)
Set the local receiver settle mode for a link.
void * pn_link_get_context(pn_link_t *link)
Get the application context that is associated with a link object.
pn_terminus_t * pn_link_remote_target(pn_link_t *link)
Access the remotely defined target definition for a link.
const char * pn_link_name(pn_link_t *link)
Get the name of a link.
uint64_t pn_link_max_message_size(pn_link_t *link)
Unsettled API - Get the maximum message size for a link.
int pn_link_unsettled(pn_link_t *link)
Get the number of unsettled deliveries for a link.
pn_snd_settle_mode_t pn_link_snd_settle_mode(pn_link_t *link)
Get the local sender settle mode for a link.
pn_rcv_settle_mode_t
Describes the permitted/expected settlement behaviours of a receiving link.
Definition: link.h:490
pn_state_t pn_link_state(pn_link_t *link)
Get the endpoint state flags for a link.
pn_record_t * pn_link_attachments(pn_link_t *link)
Get the attachments that are associated with a link object.
void pn_link_drain(pn_link_t *receiver, int credit)
Grant credit for incoming deliveries on a receiver, and set drain mode to true.
pn_delivery_t * pn_unsettled_next(pn_delivery_t *delivery)
Get the next unsettled delivery on a link.
void pn_link_free(pn_link_t *link)
Free a link object.
bool pn_link_is_receiver(pn_link_t *link)
Test if a link is a receiver.
void pn_link_set_drain(pn_link_t *receiver, bool drain)
Set the drain mode on a link.
void pn_link_offered(pn_link_t *sender, int credit)
Signal the availability of deliveries for a link.
pn_terminus_t * pn_link_target(pn_link_t *link)
Access the locally defined target definition for a link.
void pn_link_flow(pn_link_t *receiver, int credit)
Grant credit for incoming deliveries on a receiver.
@ PN_SND_UNSETTLED
The sender will send all deliveries initially unsettled.
Definition: link.h:474
@ PN_SND_SETTLED
The sender will send all deliveries settled to the receiver.
Definition: link.h:476
@ PN_SND_MIXED
The sender may send a mixture of settled and unsettled deliveries.
Definition: link.h:478
@ PN_RCV_FIRST
The receiver will settle deliveries regardless of what the sender does.
Definition: link.h:491
@ PN_RCV_SECOND
The receiver will only settle deliveries after the sender settles.
Definition: link.h:493
struct pn_session_t pn_session_t
An AMQP Session object.
Definition: types.h:296
struct pn_terminus_t pn_terminus_t
Encapsulates the endpoint state associated with an AMQP Terminus.
Definition: terminus.h:53
A source or target for messages.
struct pn_record_t pn_record_t
A type representing attached context information.
Definition: types.h:477