Class: Flapjack::Gateways::SmsNexmo
- Inherits:
-
Object
- Object
- Flapjack::Gateways::SmsNexmo
- Includes:
- Utility
- Defined in:
- lib/flapjack/gateways/sms_nexmo.rb
Instance Attribute Summary collapse
-
#sent ⇒ Object
Returns the value of attribute sent.
Instance Method Summary collapse
-
#initialize(opts = {}) ⇒ SmsNexmo
constructor
A new instance of SmsNexmo.
- #start ⇒ Object
- #stop_type ⇒ Object
Methods included from Utility
#hashify, #load_template, #local_timezone, #relative_time_ago, #remove_utc_offset, #stringify, #symbolize, #time_period_in_words, #truncate
Constructor Details
#initialize(opts = {}) ⇒ SmsNexmo
Returns a new instance of SmsNexmo.
22 23 24 25 26 27 28 29 30 31 |
# File 'lib/flapjack/gateways/sms_nexmo.rb', line 22 def initialize(opts = {}) @lock = opts[:lock] @config = opts[:config] # TODO support for config reloading @queue = Flapjack::RecordQueue.new(@config['queue'] || 'sms_nexmo_notifications', Flapjack::Data::Alert) @sent = 0 end |
Instance Attribute Details
#sent ⇒ Object
Returns the value of attribute sent.
20 21 22 |
# File 'lib/flapjack/gateways/sms_nexmo.rb', line 20 def sent @sent end |
Instance Method Details
#start ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/flapjack/gateways/sms_nexmo.rb', line 33 def start Flapjack.logger.debug("new sms_nexmo gateway pikelet with the following options: #{@config.inspect}") begin Zermelo.redis = Flapjack.redis loop do @lock.synchronize do @queue.foreach {|alert| handle_alert(alert) } end @queue.wait end ensure Flapjack.redis.quit end end |
#stop_type ⇒ Object
51 52 53 |
# File 'lib/flapjack/gateways/sms_nexmo.rb', line 51 def stop_type :exception end |