Class: RubyPushNotifications::MPNS::MPNSPusher

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby-push-notifications/mpns/mpns_pusher.rb

Overview

This class is responsible for sending notifications to the MPNS service.

Instance Method Summary collapse

Constructor Details

#initialize(certificate = nil, options = {}) ⇒ MPNSPusher

Parameters:

  • certificate (String) (defaults to: nil)

    . The PEM encoded MPNS certificate.

  • options (Hash) (defaults to: {})

    optional. Options for GCMPusher. Currently supports:

    • open_timeout [Integer]: Number of seconds to wait for the connection to open. Defaults to 30.

    • read_timeout [Integer]: Number of seconds to wait for one block to be read. Defaults to 30.



16
17
18
19
# File 'lib/ruby-push-notifications/mpns/mpns_pusher.rb', line 16

def initialize(certificate = nil, options = {})
  @certificate = certificate
  @options = options
end

Instance Method Details

#push(notifications) ⇒ Object

Actually pushes the given notifications. Assigns every notification an array with the result of each individual notification.

Parameters:

  • notifications (Array)

    . Array of MPNSNotification to send.



26
27
28
29
30
# File 'lib/ruby-push-notifications/mpns/mpns_pusher.rb', line 26

def push(notifications)
  notifications.each do |notif|
    notif.results = MPNSConnection.post notif, @certificate, @options
  end
end