Qpid Proton C++
0.12.1
|
A message transfer. More...
#include <delivery.hpp>
Inherits object< pn_delivery_t >.
Public Types | |
enum | state { NONE, RECEIVED, ACCEPTED, REJECTED, RELEASED, MODIFIED } |
Delivery state values. More... | |
Public Member Functions | |
void | accept () |
Settle with ACCEPTED state. | |
void | reject () |
Settle with REJECTED state. | |
void | release () |
Settle with RELEASED state. | |
void | modify () |
Settle with MODIFIED state. | |
state | remote_state () const |
Get the remote state for a delivery. | |
A message transfer.
Every delivery exists within the context of a proton::link. A delivery attempt can fail. As a result, a particular message may correspond to multiple deliveries.
enum state |