A container of links. More...
#include <proton/import_export.h>
#include <proton/type_compat.h>
#include <proton/types.h>
#include <proton/error.h>
#include <proton/condition.h>
#include <stddef.h>
Go to the source code of this file.
Functions | |
pn_session_t * | pn_session (pn_connection_t *connection) |
Factory for creating a new session on a given connection object. More... | |
void | pn_session_free (pn_session_t *session) |
Free a session object. More... | |
void * | pn_session_get_context (pn_session_t *session) |
Get the application context that is associated with a session object. More... | |
void | pn_session_set_context (pn_session_t *session, void *context) |
Set a new application context for a session object. More... | |
pn_record_t * | pn_session_attachments (pn_session_t *session) |
Get the attachments that are associated with a session object. More... | |
pn_state_t | pn_session_state (pn_session_t *session) |
Get the endpoint state flags for a session. More... | |
pn_error_t * | pn_session_error (pn_session_t *session) |
Deprecated - Use pn_session_condition(). More... | |
pn_condition_t * | pn_session_condition (pn_session_t *session) |
Get the local condition associated with the session endpoint. More... | |
pn_condition_t * | pn_session_remote_condition (pn_session_t *session) |
Get the remote condition associated with the session endpoint. More... | |
pn_connection_t * | pn_session_connection (pn_session_t *session) |
Get the parent connection for a session object. More... | |
void | pn_session_open (pn_session_t *session) |
Open a session. More... | |
void | pn_session_close (pn_session_t *session) |
Close a session. More... | |
size_t | pn_session_get_incoming_capacity (pn_session_t *session) |
Get the incoming capacity of the session measured in bytes. More... | |
void | pn_session_set_incoming_capacity (pn_session_t *session, size_t capacity) |
Set the incoming capacity for a session object. More... | |
size_t | pn_session_get_outgoing_window (pn_session_t *session) |
Get the outgoing window for a session object. More... | |
void | pn_session_set_outgoing_window (pn_session_t *session, size_t window) |
Set the outgoing window for a session object. More... | |
size_t | pn_session_outgoing_bytes (pn_session_t *session) |
Get the number of outgoing bytes currently buffered by a session. More... | |
size_t | pn_session_incoming_bytes (pn_session_t *session) |
Get the number of incoming bytes currently buffered by a session. More... | |
pn_session_t * | pn_session_head (pn_connection_t *connection, pn_state_t state) |
Retrieve the first session from a given connection that matches the specified state mask. More... | |
pn_session_t * | pn_session_next (pn_session_t *session, pn_state_t state) |
Retrieve the next session from a given connection that matches the specified state mask. More... | |
A container of links.