This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Privacy Policy | |
Anand Khinvasara built the Alert My Location app as a Free app. This SERVICE is provided by Anand Khinvasara at no cost and is intended for use as is. | |
This page is used to inform website visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. | |
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. | |
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Alert My Location unless otherwise defined in this Privacy Policy. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//So here is the problem - | |
Using retrofit and RXjava to do server polling. I am new to RX java, so ignore my rookie mistakes. | |
Problem - To do command polling every 5 secs. Let say the server gives us a command polling object(Commands) which contains | |
two variables - "onComplete" and "result". I need to send broadcasts after my polling is completed - Success or failure. | |
Inicially I wrote this code using RXjava operators. | |
------------------------------------------------------------------------------------------------- |