Class HealthSubscription
-
Method Summary
Modifier and TypeMethodDescriptionThe cursor reached by the most recent delivery, or null before the first one.getId()The identifier this subscription was registered under.longWhen the last batch was delivered, epoch millis, or 0 if never.getTypes()The types being watched.booleanisActive()trueuntilstop()is called.booleanWhether the operating system wakes the app when new data arrives.voidstop()Cancels the subscription and discards its persisted cursor.toString()Returns a string representation of the object.
-
Method Details
-
getId
The identifier this subscription was registered under. -
getTypes
The types being watched. -
isActive
public boolean isActive()trueuntilstop()is called. -
isPushDelivery
public boolean isPushDelivery()Whether the operating system wakes the app when new data arrives.
trueon iOS,falseon Android. Health Connect has no push mechanism at all -- Google's own guidance is to poll -- so on Android the framework drains changes at app start, on foreground, and whenever you callHealthStore.drainChanges(). Wire that last one into your background-fetch handler if you need anything better than foreground-only.This is exposed as a queryable fact rather than hidden, because an app that assumes push on Android will silently miss data for days and its authors will never know why.
-
getAnchor
The cursor reached by the most recent delivery, or null before the first one. -
getLastDeliveryMillis
public long getLastDeliveryMillis()When the last batch was delivered, epoch millis, or 0 if never. -
stop
public void stop()Cancels the subscription and discards its persisted cursor. Idempotent.
Restarting later under the same id resynchronizes from scratch, because the cursor is gone. To pause without losing your place, simply stop calling
HealthStore.drainChanges(). -
toString
Description copied from class:ObjectReturns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method. The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of: getClass().getName() + '@' + Integer.toHexString(hashCode())
-