class Push0r::Service

Service is the base class for all implemented push services. A Service encapsulates everything that is necessary to take a batch of push notifications and transmit it to the receivers. @abstract

Public Instance Methods

can_send?(message) click to toggle source

Called on the service every time a PushMessage is added to a Queue in order to determine whether it can send the given message. @param message [PushMessage] the message @return [Boolean] true if this service can send the given message, otherwise false @abstract @see PushMessage @see Queue

# File lib/push0r/Service.rb, line 16
def can_send?(message)
  return false
end
end_push() click to toggle source

Called on the service during the flushing of a Queue after the last PushMessage has been sent. If the service manages its own internal queue, this is the place to actually transmit all messages. @return [Array(Array<String>, Array<String>)] Failed new RegId Messages @abstract @see PushMessage @see Queue

# File lib/push0r/Service.rb, line 44
def end_push
  ## empty
  return [[], []]
end
init_push() click to toggle source

Called on the service during the flushing of a Queue before the first PushMessage is sent. @return [void] @abstract @see PushMessage @see Queue

# File lib/push0r/Service.rb, line 35
def init_push
  ## empty
end
send(message) click to toggle source

Sends a single push message. This is called during the flushing of a Queue for every enqueued PushMessage. The service may create its own internal queue in order to efficiently batch the messages. @param message [PushMessage] the message to be sent @return [void] @abstract @see PushMessage @see Queue

# File lib/push0r/Service.rb, line 26
def send(message)
  ## empty
end