In GCM, why everytime after the device sends parameter to the server, it will then call setRegisteredOnServer(Context context, boolean flag) , in the documentation it says this function Sets whether the device was successfully registered in the server side. I don't get the point of this function, could anyone explain it?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
Looking at the GCMRegistrar code I can see that all it does is set a local property, which can then be retrieved by isRegisteredOnServer. This property is private and neither of these methods are referenced anywhere else in the GCM helper classes, so I can only assume that they are a convenient way to tell your application when GCM is available. This would be useful if you had to include 3rd party libraries that depended on GCM connectivity and needed a standard way to test for it, but I'll admit it's a very speculative use-case. |
|||
|
|