Options for creating a target node for a sender or receiver. More...
#include <target_options.hpp>
Public Member Functions | |
target_options () | |
Create an empty set of options. | |
target_options (const target_options &) | |
Copy options. | |
target_options & | operator= (const target_options &) |
Copy options. | |
target_options & | address (const std::string &addr) |
Set the address for the target. | |
target_options & | dynamic (bool) |
Request that a node be dynamically created by the remote peer. | |
target_options & | durability_mode (enum target::durability_mode) |
Control the persistence of the target node. | |
target_options & | timeout (duration) |
The expiry period after which the target is discarded. | |
target_options & | expiry_policy (enum target::expiry_policy) |
Control when the clock for expiration begins. | |
target_options & | capabilities (const std::vector< symbol > &) |
Extension capabilities that are supported/requested. |
Options for creating a target node for a sender or receiver.
Options can be "chained". For more information see proton::connection_options.
Normal value semantics: copy or assign creates a separate copy of the options.
target_options& address | ( | const std::string & | addr | ) |
target_options& dynamic | ( | bool | ) |
target_options& durability_mode | ( | enum target::durability_mode | ) |
Control the persistence of the target node.
The default is target::NONDURABLE, meaning non-persistent.
target_options& timeout | ( | duration | ) |
The expiry period after which the target is discarded.
The default is no timeout.
target_options& expiry_policy | ( | enum target::expiry_policy | ) |
Control when the clock for expiration begins.
The default is target::LINK_CLOSE.