Class: WebhookQueue

Inherits:
Object
  • Object
show all
Includes:
Singleton
Defined in:
lib/watercooling/webhook_queue.rb

Constant Summary collapse

@@retries =
3

Instance Method Summary collapse

Constructor Details

#initializeWebhookQueue



8
9
10
11
12
13
# File 'lib/watercooling/webhook_queue.rb', line 8

def initialize
  EM.add_periodic_timer(1) {
    send_current_webhooks
  }
  puts "Watercoolr is cooling..."
end