<div class="markdown">
<p dir="auto">Hi,</p>

<p dir="auto">We now seem to have something approaching a stable and working UPS configuration. (Famous last words!) Thanks to the Aerogear team for helping resolve the background notifications on Android.</p>

<p dir="auto">As we are tidying up, we noticed (ahem) that we had commented out a few lines in our code. </p>

<pre><code>    if (event['content-available'])
    {
        // Still not clear what to do with this.
        // push.setContentAvailable(1);
    }
</code></pre>

<p dir="auto">We went back to the Aerogear docs and tried to work out what setContentAvailable really does and what should we do with it. The docs for the function call  are a little sparse, so we looked at the source code and we’re still no wiser. </p>

<p dir="auto">Is there a better explanation of when we should call setContentAvailable and with which parameter? </p>

<p dir="auto">Just to set the ball rolling we <em>think</em> it could mean that when you receive the content-available = 1 flag on iOS, we do a call to get some data from the server ourselves, if the the results of <em>our</em> server call indicate that we have received new data, we set the value to setContentAvailable to 1, if our function call to the server has no data, then we set it to zero and if something failed we set it to 2. </p>

<p dir="auto">So what happens if the value is 0, 1 or 2? if its 2, is a new new call made to something, if its 0 or 1 what happens?</p>

<p dir="auto">Apologies if we’ve missed the point of it, but we’re struggling to understand this.</p>

<p dir="auto">Thanks,</p>

<p dir="auto">Rob.</p>

</div>