module Qpid::Proton::Disposition::State

States of a message transfer

Constants

ACCEPTED

Message was successfully processed by the receiver

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

Partial message data received. Only used during link recovery.

REJECTED

Message rejected as invalid and unprocessable by the receiver.

RELEASED

Message was not (and will not be) processed by the receiver, but may be acceptable if re-delivered to another receiver

Public Class Methods

included(klass) click to toggle source
# File lib/core/disposition.rb, line 51
def self.included(klass) klass.extend ClassMethods; end