class RubyPushNotifications::GCM::GCMResultOK

Indicates that the notification was successfully sent to the corresponding registration ID

Public Instance Methods

==(other) click to toggle source
Calls superclass method
# File lib/ruby-push-notifications/gcm/gcm_result.rb, line 14
def ==(other)
  other.is_a?(GCMResultOK) || super(other)
end