Class: RSMP::AckCollector
- Defined in:
- lib/rsmp/collect/ack_collector.rb
Overview
Class for waiting for a message acknowledgement
Instance Attribute Summary
Attributes inherited from Collector
#condition, #error, #m_id, #messages, #status, #task
Instance Method Summary collapse
-
#acceptable?(message) ⇒ Boolean
Check if we the MessageAck related to initiating request, identified by @m_id.
-
#initialize(proxy, options = {}) ⇒ AckCollector
constructor
A new instance of AckCollector.
Methods inherited from Collector
#cancel, #cancelled?, #collect, #collect!, #collecting?, #complete, #describe, #describe_matcher, #describe_num_and_type, #describe_progress, #describe_types, #do_stop, #done?, #identifier, #incomplete, #ingoing?, #inspect, #keep, #log_complete, #log_incomplete, #log_start, #make_title, #ok!, #ok?, #outgoing?, #perform_match, #ready?, #receive, #receive_disconnect, #receive_error, #receive_schema_error, #reject_not_ack, #reset, #start, #timeout?, #use_task, #wait, #wait!
Methods included from Receiver
#accept_message?, #handle_message, #initialize_receiver, #receive, #receive_error, #reject_message?, #start_receiving, #stop_receiving
Methods included from Inspect
Constructor Details
#initialize(proxy, options = {}) ⇒ AckCollector
Returns a new instance of AckCollector.
4 5 6 7 8 9 10 11 |
# File 'lib/rsmp/collect/ack_collector.rb', line 4 def initialize proxy, ={} raise ArgumentError.new("m_id must be provided") unless [:m_id] super proxy, .merge( filter: RSMP::Filter.new(ingoing: true, outgoing: false, type: 'MessageAck'), num: 1, title: 'message acknowledgement' ) end |
Instance Method Details
#acceptable?(message) ⇒ Boolean
Check if we the MessageAck related to initiating request, identified by @m_id.
14 15 16 |
# File 'lib/rsmp/collect/ack_collector.rb', line 14 def acceptable? super() && .attribute('oMId') == @m_id end |