Module Qpid::Proton::Transfer::State
In: lib/core/transfer.rb

AMQP Delivery States describing the outcome of a message transfer

Constants

ACCEPTED = Cproton::PN_ACCEPTED   Message was successfully processed by the receiver
REJECTED = Cproton::PN_REJECTED   Message rejected as invalid and unprocessable by the receiver.
RELEASED = Cproton::PN_RELEASED   Message was not (and will not be) processed by the receiver, but may be acceptable if re-delivered to another receiver
MODIFIED = Cproton::PN_MODIFIED   Like {RELEASED}, but there are modifications (see {Tracker#modifications}) that must be applied to the message by the {Sender} before re-delivering it.
RECEIVED = Cproton::PN_RECEIVED   Partial message data received. Only used during link recovery.

[Validate]