Class: Qpid::Proton::Tracker
- Inherits:
-
Object
- Object
- Qpid::Proton::Tracker
- Defined in:
- lib/qpid_proton/tracker.rb
Overview
A Tracker is used to track the disposition of a Message.
Constant Summary collapse
- CUMULATIVE =
Cproton::PN_CUMULATIVE
Class Method Summary collapse
-
.valid_flag?(flag) ⇒ Boolean
:nodoc:.
Instance Method Summary collapse
-
#impl ⇒ Object
:nodoc:.
-
#initialize(impl) ⇒ Tracker
constructor
:nodoc:.
Constructor Details
#initialize(impl) ⇒ Tracker
:nodoc:
30 31 32 |
# File 'lib/qpid_proton/tracker.rb', line 30 def initialize(impl) # :nodoc: @impl = impl end |
Class Method Details
.valid_flag?(flag) ⇒ Boolean
:nodoc:
38 39 40 |
# File 'lib/qpid_proton/tracker.rb', line 38 def self.valid_flag?(flag) # :nodoc: [0, CUMULATIVE].include?(flag) end |
Instance Method Details
#impl ⇒ Object
:nodoc:
34 35 36 |
# File 'lib/qpid_proton/tracker.rb', line 34 def impl # :nodoc: @impl end |