class APN::Backend::Simple

Public Instance Methods

notify(token, opts) click to toggle source
# File lib/apn/backend.rb, line 7
def notify(token, opts)
  Thread.new do
    APN.notify_sync(token, opts)
  end
end