Class: APN::Backend::Simple

Inherits:
Object
  • Object
show all
Defined in:
lib/apn/backend.rb

Instance Method Summary collapse

Instance Method Details

#notify(token, opts) ⇒ Object



7
8
9
10
11
# File 'lib/apn/backend.rb', line 7

def notify(token, opts)
  Thread.new do
    APN.notify_sync(token, opts)
  end
end