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.
falseon every platform in this release. Health Connect has no push mechanism at all -- Google's own guidance is to poll -- and while HealthKit does offerHKObserverQuery, this release registers none. Nothing here hooks the application lifecycle either, so changes arrive exactly when you callHealthStore.drainChanges()and at no other time: call it when you come to the foreground and from your background-fetch handler.This is exposed as a queryable fact rather than hidden, because an app that assumes push will silently miss data for days and its authors will never know why -- no changes and no new data look identical from the outside.
-
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())
-